Skip to content

Commit

Permalink
fix(pull-docker-image): fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jul 31, 2023
1 parent 636d0ec commit 199bc18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pull-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
shell: bash
run: |
# if not present, pull from registry
EXISTS=$(docker image inspect ${{ inputs.image }} > /dev/null 2>&1))
EXISTS=$(docker image inspect ${{ inputs.image }} > /dev/null 2>&1)
# if image is not present, pull it
if [ $? -ne 0 ]; then
Expand Down

0 comments on commit 199bc18

Please sign in to comment.