Skip to content

Commit a371468

Browse files
committed
fix(package): 🐛 ensure wildcards in includes/excludes are passed to zip
ensures wildcards aren't evaluated by bash
1 parent 6a4430b commit a371468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/package/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ zip=$(dirname "$0")/vendor/zip-$platform-$cpu
1717
find . -exec touch -t 204901010000 {} +
1818

1919
mkdir -p $(dirname $output)
20-
$zip -9ry $@
20+
$zip -9ry "$@"
2121

2222
echo '{"outputFile": "'$output'"}' >&3

0 commit comments

Comments
 (0)