Skip to content

Commit 6b199d3

Browse files
committed
fix: wrap variable in double-quotes
1 parent 0179bd6 commit 6b199d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ if $INPUT_GENERATE_ZIP; then
129129
# use a symbolic link so the directory in the zip matches the slug
130130
ln -s "${SVN_DIR}/trunk" "{$SVN_DIR}/${SLUG}"
131131
mv "${SVN_DIR}/trunk" "${SVN_DIR}/${SLUG}"
132-
zip -r "${GITHUB_WORKSPACE}/${SLUG}.zip" $SLUG
132+
zip -r "${GITHUB_WORKSPACE}/${SLUG}.zip" "$SLUG"
133133
unlink "{$SVN_DIR}/${SLUG}"
134134

135135
echo "::set-output name=zip-path::${GITHUB_WORKSPACE}/${SLUG}.zip"

0 commit comments

Comments
 (0)