From baf9e7393f63cc17d182930f245478467008d88e Mon Sep 17 00:00:00 2001 From: Franscobec Date: Mon, 19 Jan 2026 20:08:24 -0500 Subject: [PATCH] Fix truncate cmd --- computechecksums.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/computechecksums.sh b/computechecksums.sh index b0eae9e..b8fa378 100644 --- a/computechecksums.sh +++ b/computechecksums.sh @@ -2,7 +2,7 @@ FILE="$1" if [ -f "./checksums.txt" ]; then -truncate ./checksums.txt +truncate -s0 ./checksums.txt else touch ./checksums.txt fi