Skip to content

Commit

Permalink
refactor argument handling
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed May 19, 2023
1 parent 96afa18 commit 014086d
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 @@ -34,7 +34,7 @@ runs:
shell: bash
if: ${{ inputs.install_sdk == 'true' }}
run: |
curl -s https://download.panic.com/playdate_sdk/Linux/PlaydateSDK-${{ inputs.sdk_version }}.tar.gz -L | tar x${{ inputs.quiet == 'true' && '' || 'v' }}zf - -C ${{ runner.temp }}
curl -s https://download.panic.com/playdate_sdk/Linux/PlaydateSDK-${{ inputs.sdk_version }}.tar.gz -L | tar ${{ inputs.quiet == 'true' && 'xzf' || 'xvzf' }} - -C ${{ runner.temp }}
- name: 'Set PLAYDATE_SDK_PATH environment variable'
shell: bash
Expand Down

0 comments on commit 014086d

Please sign in to comment.