Skip to content

Commit

Permalink
🎨 Fixes syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Dec 30, 2020
1 parent cfb4add commit 6fcd0d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [[ "${INPUT_ANNOTATE,,}" = 'true' ]]; then
# Remove '-q' and '--quiet' form the black arguments
# NOTE: Having these flags in the action prevents the action from working.
black_args_tmp=()
for item in ${black_args[@]}; do
for item in "${black_args[@]}"; do
if [[ "${item}" != "-q" && "${item}" != "--quiet" ]]; then
black_args_tmp+=("${item}") #Quotes when working with strings
fi
Expand Down

0 comments on commit 6fcd0d9

Please sign in to comment.