Skip to content

Commit

Permalink
Wrap command in quotes to pass static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
claytoncollie committed Aug 14, 2024
1 parent 64424d6 commit dd8d664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ if [[ "$BUILD_DIR" = false ]]; then
git config --global user.name "10upbot on GitHub"

# Ensure git archive will pick up any changed files in the directory try.
test $(git ls-files --deleted) && git rm $(git ls-files --deleted)
test "$(git ls-files --deleted)" && git rm "$(git ls-files --deleted)"
if [ -n "$(git status --porcelain --untracked-files=all)" ]; then
git add .
git commit -m "Include build step changes"
Expand Down

0 comments on commit dd8d664

Please sign in to comment.