Skip to content

Commit

Permalink
Fix checksums in package.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrstegeman committed Oct 28, 2020
1 parent 0f58bf0 commit c7428aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rm -rf node_modules

npm install --production

shasum --algorithm 256 manifest.json package.json *.js LICENSE README.md > SHA256SUMS
shasum --algorithm 256 manifest.json package.json *.js lib/*.js LICENSE README.md > SHA256SUMS

find node_modules \( -type f -o -type l \) -exec shasum --algorithm 256 {} \; >> SHA256SUMS

Expand All @@ -16,4 +16,4 @@ tar czf ${TARFILE} package

shasum --algorithm 256 ${TARFILE} > ${TARFILE}.sha256sum

rm -rf SHA256SUMS package
rm -rf SHA256SUMS package

0 comments on commit c7428aa

Please sign in to comment.