Explorar el Código

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 hace 12 años
padre
commit
a00bf38f16
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  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