1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #11332 from icecrime/windows_release

Publish Windows binaries in release script
This commit is contained in:
Michael Crosby 2015-03-16 16:39:58 -07:00
commit 9422bc55fa

View file

@ -190,6 +190,13 @@ release_build() {
linux)
s3Os=Linux
;;
windows)
s3Os=Windows
binary+='.exe'
if [ "$latestBase" ]; then
latestBase+='.exe'
fi
;;
*)
echo >&2 "error: can't convert $s3Os to an appropriate value for 'uname -s'"
exit 1