From 241c37197643a2495adbca8985c6399dba52a370 Mon Sep 17 00:00:00 2001 From: Arnaud Porterie Date: Wed, 11 Mar 2015 11:29:29 -0700 Subject: [PATCH] Publish Windows binaries in release script Windows client being official supported, publish Docker client Windows binaries as part of the release.sh script. Signed-off-by: Arnaud Porterie --- hack/release.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hack/release.sh b/hack/release.sh index f0adc8be60..da95808c5a 100755 --- a/hack/release.sh +++ b/hack/release.sh @@ -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