Skip to content

Commit

Permalink
Merge pull request #15 from mrstegeman/package-fix
Browse files Browse the repository at this point in the history
Fix checksums in package.sh.
  • Loading branch information
roderm committed Oct 30, 2020
2 parents 0f58bf0 + c7428aa commit de8ad0a
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 de8ad0a

Please sign in to comment.