test: Update 3 files
Some checks failed
Build-Test-Publish / build (linux/arm64) (push) Failing after 13s
Build-Test-Publish / build (linux/amd64) (push) Failing after 20s
Build-Test-Publish / test-install-from-scratch (linux/amd64) (push) Has been skipped
Build-Test-Publish / test-install-from-scratch (linux/arm64) (push) Has been skipped

This commit is contained in:
Your Name
2025-06-25 19:17:50 +12:00
parent 31dcb29555
commit 6e920bd236
3 changed files with 11 additions and 12 deletions

View File

@ -71,8 +71,10 @@ int main(int argc, char* argv[]) {
return update();
}
// Show version for normal operations
std::cout << "Dehydrate version " << VERSION << std::endl;
// Show version for normal operations (unless silent)
if (!args.silent) {
std::cout << "Dehydrate version " << VERSION << std::endl;
}
std::filesystem::path src(args.source);
if (!std::filesystem::exists(src)) {