diff options
Diffstat (limited to 'scripts/travis-before-deploy.sh')
-rwxr-xr-x | scripts/travis-before-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis-before-deploy.sh b/scripts/travis-before-deploy.sh index 15618dc2..5b9b2d1b 100755 --- a/scripts/travis-before-deploy.sh +++ b/scripts/travis-before-deploy.sh @@ -28,5 +28,5 @@ if [[ -n ${WABT_DEPLOY:-} ]]; then PKGNAME="wabt-${TRAVIS_TAG}-${TRAVIS_OS_NAME}" mv bin wabt-${TRAVIS_TAG} tar -czf ${PKGNAME}.tar.gz wabt-${TRAVIS_TAG} - sha256sum ${PKGNAME}.tar.gz > ${PKGNAME}.tar.gz.sha256 + ${SCRIPT_DIR}/sha256sum.py ${PKGNAME}.tar.gz > ${PKGNAME}.tar.gz.sha256 fi |