commit c6c13d38f3c8039d22fa2a9921b2f19e5e1ac3ee
parent 154589f88e7bac6026aae65e6806b00fbffdcee7
Author: lumidify <nobody@lumidify.org>
Date: Tue, 5 Jan 2021 12:42:20 +0100
Fix sha256
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lumia.pl b/lumia.pl
@@ -25,7 +25,8 @@ my $DOUBLE_CKSUM_FILE = ".lumidify_archive_cksums.cksum";
# uncomment this instead of the lines below to use
# sha256 instead of cksum as the hash algorithm
-#my $CKSUM_CMD = 'sha256';
+# Note: this isn't really tested properly
+#my $CKSUM_CMD = 'sha256 -q';
#my $CKSUM_NUMFIELDS = 1;
my $CKSUM_CMD = 'cksum';
my $CKSUM_NUMFIELDS = 2;