Skip to content

Commit

Permalink
fix mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey authored Oct 11, 2024
1 parent f35d255 commit 8b11968
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 @@ -43,7 +43,7 @@ runs:
run: |
VM_STATUS="stable"
URL="${{ env.FILES_URL }}/pharo-vm-${{ env.HOST_OS }}-${{ env.HOST_ARCH }}-${VM_STATUS}.zip"
mkdir -p dirname(${{ steps.vars.outputs.VM_DIR }})
mkdir -p $(dirname ${{ steps.vars.outputs.VM_DIR }})
echo "Downloading $URL to ${{ steps.vars.outputs.VM_DIR }}"
curl -L $URL -o pharo-vm.zip
unzip -q pharo-vm.zip -d ${{ steps.vars.outputs.VM_DIR }}
Expand Down

0 comments on commit 8b11968

Please sign in to comment.