Skip to content

Commit

Permalink
Updates make-iso.sh
Browse files Browse the repository at this point in the history
Updates the md5 hash generation so it doesn't override the sha256 hash
  • Loading branch information
DT3264 committed Jul 26, 2023
1 parent 78a345a commit 1335fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-system/tools/make-iso/make-iso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ echo "Generating $ISO_OUTPUT"

## Gen ISO Hash
sha256sum "$ISO_OUTPUT" >>"$ISO_OUTPUT.sha256"
md5sum "$ISO_OUTPUT" >>"$ISO_OUTPUT.sha256"
md5sum "$ISO_OUTPUT" >>"$ISO_OUTPUT.md5"

## Return to original directory
cd "$CURRENT_PATH" || exit 1 # error
Expand Down

0 comments on commit 1335fea

Please sign in to comment.