From 851451b41aa8edc20077b4d2cca25fd00f51fa68 Mon Sep 17 00:00:00 2001 From: Alexander M Pickering Date: Wed, 4 Sep 2024 18:13:36 -0500 Subject: Modify how we zip --- init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'init') diff --git a/init b/init index 1eac090..04cc66a 100755 --- a/init +++ b/init @@ -11,6 +11,6 @@ if [ -z $(echo $CFLAGS | grep -o -E -- '( |^)-g( |$)') ]; then zip -d $obj docs/ docs/* tests/ tests/* # And pack the library with upx unzip $obj lib/* - upx lib/* - zip -r -u $obj lib + upx --no-progress lib/* + zip -r -u "$obj" lib fi -- cgit v1.2.3-55-g6feb