Skip to content

Commit

Permalink
fix: some inputs are already quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB authored Sep 16, 2024
1 parent d46c10a commit 4f14346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ runs:
if [[ -n "${{ inputs.backend }}" ]]
then
echo "using backend '${{ inputs.backend }}'"
BACKEND="--backend '${{ inputs.backend }}'"
BACKEND="--backend ${{ inputs.backend }}"
else
BACKEND=""
fi
Expand Down

0 comments on commit 4f14346

Please sign in to comment.