Skip to content

Commit 57329f2

Browse files
committed
ci(avalanchego-setup-action): handle checkout-path
1 parent 106ee40 commit 57329f2

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/avalanchego-setup-action

1 file changed

+2
-2
lines changed

.github/actions/avalanchego-setup-action/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
shell: bash
5656
run: |
5757
if [ -n "${{ inputs.firewood-path }}" ]; then
58-
${{ inputs.checkout-path }}/scripts/setup_firewood.sh ${{ inputs.firewood }} ${{ inputs.firewood-path }}
58+
"${{ inputs.checkout-path }}/scripts/setup_firewood.sh" "${{ inputs.firewood }}" "${{ inputs.firewood-path }}"
5959
else
60-
${{ inputs.checkout-path }}/scripts/setup_firewood.sh ${{ inputs.firewood }}
60+
"${{ inputs.checkout-path }}/scripts/setup_firewood.sh" "${{ inputs.firewood }}"
6161
fi

0 commit comments

Comments
 (0)