We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6697477 commit 388d3f0Copy full SHA for 388d3f0
action.yaml
@@ -26,7 +26,9 @@ runs:
26
27
- name: Download ArkScript release
28
shell: sh
29
- run: download.sh "${{ inputs.version }}" "${{ inputs.os }}"
+ run: |
30
+ echo "$PATH"
31
+ download.sh "${{ inputs.version }}" "${{ inputs.os }}"
32
33
- name: Download latest ArkScript stdlib
34
if: ${{ inputs.stdlib_update }} != 'no'
download.sh
@@ -38,5 +38,5 @@ curl "$ASSET_PATH" -O -J -L
38
mkdir -p .arkscript
39
unzip -oq "${ASSET}.zip" -d .arkscript
40
rm "${ASSET}.zip"
41
-chmod +x ./.arkscript/arkscript*
+chmod +x ./.arkscript/arkscript* ./.arkscript/libArk*
42
0 commit comments