Skip to content

Commit

Permalink
Fix bagit checksum validation external call
Browse files Browse the repository at this point in the history
  • Loading branch information
joschrew committed Apr 23, 2024
1 parent 4aa74c0 commit 72e12cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public static void validatePayloadChecksums(Path destination) {
throw new PayloadSumException("Payload-Manifest not found");
}

String[] cmd = new String[] { "/usr/bin/sha512sum", "--status", "-c", payloadManifest.toString() };
String[] cmd = new String[] { "/usr/bin/sha512sum", "-s", "-c", payloadManifest.toString() };
Process proc;
int exitCode = -1;
try {
Expand Down

0 comments on commit 72e12cf

Please sign in to comment.