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 authored and equetzal committed Jul 27, 2023
1 parent 021fdae commit 03d00d5
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 03d00d5

Please sign in to comment.