Skip to content

Commit

Permalink
action: fix incorrect -d flag
Browse files Browse the repository at this point in the history
lvh images pull doesn't understand -d. The correct flag is --dir.

Signed-off-by: Lorenz Bauer <[email protected]>
  • Loading branch information
lmb authored and kkourt committed Jan 25, 2024
1 parent e82aa56 commit 507847e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ runs:
if: ${{ inputs.provision == 'true' && steps.cache-lvh-image.outputs.cache-hit != 'true' }}
shell: bash
run: |
/bin/lvh images pull --cache quay.io/lvh-images/${{ inputs.image }}:${{ inputs.image-version }} -d "/"
/bin/lvh images pull --cache quay.io/lvh-images/${{ inputs.image }}:${{ inputs.image-version }} --dir "/"
- name: Start VM
if: ${{ inputs.provision == 'true' }}
Expand Down

0 comments on commit 507847e

Please sign in to comment.