Skip to content

Commit

Permalink
Merge pull request docker#5339 from docker/add_shasum_compute
Browse files Browse the repository at this point in the history
Add shasum computation to download-binaries script
  • Loading branch information
shin- authored Nov 3, 2017
2 parents 819be19 + 2482d57 commit d05c53b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions script/release/download-binaries
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ mkdir $DESTINATION
wget -O $DESTINATION/docker-compose-Darwin-x86_64 $BASE_BINTRAY_URL/docker-compose-Darwin-x86_64
wget -O $DESTINATION/docker-compose-Linux-x86_64 $BASE_BINTRAY_URL/docker-compose-Linux-x86_64
wget -O $DESTINATION/docker-compose-Windows-x86_64.exe $APPVEYOR_URL

echo -e "\n\nCopy the following lines into the integrity check table in the release notes:\n\n"
cd $DESTINATION
ls | xargs sha256sum | sed 's/ / | /g' | sed -r 's/([^ |]+)/`\1`/g'
cd -

0 comments on commit d05c53b

Please sign in to comment.