From 4cc9b9b997445f3f7c96f73a2e4dde59ef04bc01 Mon Sep 17 00:00:00 2001 From: Danny Staple Date: Sat, 7 May 2022 10:49:32 +0100 Subject: [PATCH] Fix small deploy issue --- .deploy/send-it.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.deploy/send-it.sh b/.deploy/send-it.sh index 52e71f3..dfaec22 100755 --- a/.deploy/send-it.sh +++ b/.deploy/send-it.sh @@ -19,7 +19,7 @@ cp "${source}" "${DEST}/${sourcebase}" # make a code.py echo "import ${module}" >"${DEST}/code.py" -if [ -n "${support_files[*]}" ]; then +if [ -n "${support_files[*]:-}" ]; then for file in "${support_files[@]}"; do cp "$file" "${DEST}/$(basename "${file}")" done