Skip to content

Commit 8c77d0d

Browse files
authored
Update support.sh: Don't quote ${SOURCE}
since it may contain a "*" in it, and we want that expanded.
1 parent 1139642 commit 8c77d0d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

support.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,8 @@ function generate_support_info()
406406
{
407407
local ZIP_FILE="${1}"
408408
local SOURCE="${2}"
409-
zip -r "${ZIP_FILE}" "${SOURCE}" > /dev/null 2>&1
409+
# shellcheck disable=SC2086
410+
zip -r "${ZIP_FILE}" ${SOURCE} > /dev/null 2>&1
410411
get_mb "${ZIP_FILE}"
411412
rm -f "${ZIP_FILE}"
412413
}

0 commit comments

Comments
 (0)