Skip to content

Commit 7d4794f

Browse files
committed
fix git pull error
1 parent bea502f commit 7d4794f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ To install or update LODA, please follow the [installation instructions](https:/
55
### Bugfixes
66

77
* Fix duplicate stats regeneration
8+
* Fix sporadic `git pull` error
89

910
## v25.1.31
1011

src/sys/setup.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,7 @@ void Setup::cloneProgramsHome(const std::string& git_url) {
161161
}
162162

163163
bool Setup::pullProgramsHome(bool fail_on_error) {
164-
return Git::git(getProgramsHome(), "pull origin main -q --ff-only",
165-
fail_on_error);
164+
return Git::git(getProgramsHome(), "pull origin main -q", fail_on_error);
166165
}
167166

168167
void Setup::checkDir(const std::string& home) {

0 commit comments

Comments
 (0)