Skip to content

Commit

Permalink
chore: move shasum to one file
Browse files Browse the repository at this point in the history
  • Loading branch information
Bambooin committed Jun 25, 2021
1 parent a64ce17 commit cb0d85d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions script/sha256sum.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/usr/bin/env bash

releasePath=release
shasum=rimerc.sha256.txt

pushd ${releasePath}

for zip in *.zip
do
sha256sum ${zip} > ${zip}.sha256.txt
done
# generate shasum
sha256sum *.zip > ${shasum}

# check shasum
sha256sum -c ${shasum}

popd

0 comments on commit cb0d85d

Please # to comment.