Commit 9abf53ef03eb554b8d1db7f2f695264c2b85fb1d
1 parent
9ea5cca0
Exists in
master
and in
17 other branches
Calculate MD5 before uploading
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
release.sh
... | ... | @@ -34,6 +34,11 @@ if [[ -z ${release_package} ]]; then |
34 | 34 | error_exit 'could not find the release package' |
35 | 35 | fi |
36 | 36 | |
37 | +echo | |
38 | +echo 'Package MD5:' | |
39 | +md5sum ${release_package} | |
40 | + | |
41 | +echo | |
37 | 42 | echo 'Starting upload' |
38 | 43 | if !(aws s3 cp ${release_package} s3://${RELEASE_BUCKET} --acl public-read --region ${RELEASE_BUCKET_REGION}); then |
39 | 44 | error_exit 'release upload failed' | ... | ... |