From 3868a69dec167c5407c17dbcf4888d73b3e51899 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 28 Jun 2013 10:34:15 -0400 Subject: [PATCH] scripts: Get rid of the password on zips --- scripts/dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dist.sh b/scripts/dist.sh index 3e2db562d..a5728c402 100755 --- a/scripts/dist.sh +++ b/scripts/dist.sh @@ -79,7 +79,7 @@ for PLATFORM in $(find ./pkg/${VERSIONDIR} -mindepth 1 -maxdepth 1 -type d); do ( pushd ${PLATFORM} - zip -P hashipacker ${DIR}/pkg/${VERSIONDIR}/dist/${ARCHIVE_NAME}.zip ./* + zip ${DIR}/pkg/${VERSIONDIR}/dist/${ARCHIVE_NAME}.zip ./* popd ) & done