Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #611 from twang2218/add-checksum
Browse files Browse the repository at this point in the history
Add checksum file for toolbox releases
  • Loading branch information
nathanleclaire authored Jan 18, 2017
2 parents ad4063a + 4812071 commit 2a751ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions script/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ for i in $(seq 0 4); do
echo "Trying build $i..."
make clean
make
(
# Generate Checksum
cd dist
shasum -a 256 DockerToolbox* > sha256sum.txt
md5sum DockerToolbox* > md5sum.txt
)
if [[ $? -eq 0 ]]; then
cp dist/* $CIRCLE_ARTIFACTS

Expand Down

0 comments on commit 2a751ca

Please sign in to comment.