diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-all.sh | 2 | ||||
-rwxr-xr-x | scripts/test_bin-archive.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build-all.sh b/scripts/build-all.sh index dbbae21..6cbc78a 100755 --- a/scripts/build-all.sh +++ b/scripts/build-all.sh @@ -78,7 +78,7 @@ done # pack echo "bwEYAZaX8Zu9X1C6024h" > "$PROONE_BIN_ARCHIVE" # "test":"password" -"$PROONE_PACKER" "$PROONE_ORG_BIN_PREFIX."* | pigz -z - | base64 >> "$PROONE_BIN_ARCHIVE" +"$PROONE_PACKER" "$PROONE_ORG_BIN_PREFIX."* | base64 >> "$PROONE_BIN_ARCHIVE" if [ $? -ne 0 ]; then exit $? fi diff --git a/scripts/test_bin-archive.sh b/scripts/test_bin-archive.sh index 5d95f2c..bbf56c1 100755 --- a/scripts/test_bin-archive.sh +++ b/scripts/test_bin-archive.sh @@ -41,7 +41,7 @@ for arch in ${ARCH_ARR[@]}; do fi done -"$PACKER" "$BIN_PACK_DIR/$BIN_PREFIX."* | pigz -z - | base64 > "$TEST_DIR/$BIN_ARCHIVE_PREFIX" +"$PACKER" "$BIN_PACK_DIR/$BIN_PREFIX."* | base64 > "$TEST_DIR/$BIN_ARCHIVE_PREFIX" if [ $? -ne 0 ]; then exit 2; fi |