Skip to content

Commit 8016eca

Browse files
committed
fix missing double-quote
1 parent f544d22 commit 8016eca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/python-install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ runs:
8585
working-directory: ${{ inputs.working-directory }}
8686

8787
run: |
88-
if [ "${{ inputs.optional-dependency-groups }} == "" ]; then
88+
if [ "${{ inputs.optional-dependency-groups }}" == "" ]; then
8989
poetry install --no-interaction --no-root --all-extras
9090
else
9191
poetry install --no-interaction --no-root --with ${{ inputs.optional-dependency-groups }} --all-extras

0 commit comments

Comments
 (0)