Skip to content

Commit 83709b6

Browse files
committed
[ANE-2484] Listen to shellcheck's wisdom
1 parent f228b86 commit 83709b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vendor_download.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,14 @@ jq -c ".assets | map({url: .url, name: .name}) | map(select($FILTER)) | .[]" $FI
171171

172172
case "$(uname -s)" in
173173
Darwin)
174-
tar -zxf $OUTPUT --strip-components 1 --exclude LICENSE --exclude README.md --directory vendor-bins
174+
tar -zxf "$OUTPUT" --strip-components 1 --exclude LICENSE --exclude README.md --directory vendor-bins
175175
;;
176176
Linux)
177-
tar -zxf $OUTPUT --strip-components 1 --exclude LICENSE --exclude README.md --directory vendor-bins
177+
tar -zxf "$OUTPUT" --strip-components 1 --exclude LICENSE --exclude README.md --directory vendor-bins
178178
;;
179179
*)
180180
echo "Warn: Assuming $(uname -s) is Windows"
181-
unzip $OUTPUT ficus.exe -d vendor-bins
181+
unzip "$OUTPUT" ficus.exe -d vendor-bins
182182
;;
183183
esac
184184
rm $OUTPUT

0 commit comments

Comments
 (0)