Browse Source

feat(scripts): use zip for windows and darwin

zip files are more common on OSX and windows. Use those file formats for
those two platforms.
Brandon Philips 12 years ago
parent
commit
a00bf38f16
1 changed files with 5 additions and 1 deletions
  1. 5 1
      scripts/build-release

+ 5 - 1
scripts/build-release

@@ -47,5 +47,9 @@ for i in darwin windows linux; do
 	package etcd ${TARGET}
 	package etcdctl ${TARGET}
 
-	tar cvvfz ${TARGET}.tar.gz ${TARGET}
+	if [ ${GOOS} == "linux" ]; then
+		tar cvvfz ${TARGET}.tar.gz ${TARGET}
+	else
+		zip -r ${TARGET}.zip ${TARGET}
+	fi
 done