Skip to content

Commit

Permalink
kiss-live: rename sum's
Browse files Browse the repository at this point in the history
  • Loading branch information
eudaldgr committed Sep 10, 2020
1 parent 59a476e commit e7458a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kiss-live
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ make_iso()
rm -rf "$isodir/boot/efiboot"

print "Creating iso"
rm -f "$isolabel.iso" "$isolabel.md5" "$isolabel.sha1"
rm -f "$isolabel.iso" "$isolabel.iso.md5" "$isolabel.iso.sha1"
xorriso \
-as mkisofs \
-isohybrid-mbr "$filesdir/isohdpfx.bin" \
Expand All @@ -267,10 +267,10 @@ make_iso()
|| panic "Failed creating iso"

print "Generate md5sum"
md5sum "$isolabel.iso" > "$here/$isolabel.md5"
md5sum "$isolabel.iso" > "$here/$isolabel.iso.md5"

print "Generate sha1sum"
sha1sum "$isolabel.iso" > "$here/$isolabel.sha1"
sha1sum "$isolabel.iso" > "$here/$isolabel.iso.sha1"
}

# int main()
Expand Down

0 comments on commit e7458a6

Please sign in to comment.