Skip to content

Commit 738920a

Browse files
committed
release v24.12.28
1 parent 6d65bd9 commit 738920a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ To install or update LODA, please follow the [installation instructions](https:/
22

33
## [Unreleased]
44

5+
## v24.12.28
6+
57
### Bugfixes
68

79
* Fix empty programs directory error in BOINC

src/cmd/boinc.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ void Boinc::run() {
129129
FolderLock lock(project_dir);
130130
if (Setup::existsProgramsHome() && // need to check again here
131131
!Setup::pullProgramsHome(false)) {
132-
Log::get().error("Failed to update programs repository", false);
133132
const auto age = getFileAgeInDays(progs_dir);
134-
Log::get().info("Programs directory age: " + std::to_string(age) +
135-
" days");
133+
Log::get().error("Failed to update programs repository (age: " +
134+
std::to_string(age) + " days)",
135+
false);
136136
if (age >= 3) { // magic number
137137
Log::get().warn("Deleting corrupt programs directory");
138138
rmDirRecursive(progs_dir);

0 commit comments

Comments
 (0)