Skip to content

Commit 62a5d0c

Browse files
committed
debug
1 parent 6697477 commit 62a5d0c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

action.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ runs:
2626

2727
- name: Download ArkScript release
2828
shell: sh
29-
run: download.sh "${{ inputs.version }}" "${{ inputs.os }}"
29+
run: |
30+
echo "$PATH"
31+
download.sh "${{ inputs.version }}" "${{ inputs.os }}"
3032
3133
- name: Download latest ArkScript stdlib
3234
if: ${{ inputs.stdlib_update }} != 'no'

download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ curl "$ASSET_PATH" -O -J -L
3838
mkdir -p .arkscript
3939
unzip -oq "${ASSET}.zip" -d .arkscript
4040
rm "${ASSET}.zip"
41-
chmod +x ./.arkscript/arkscript*
41+
chmod +x ./.arkscript/arkscript* ./.arkscript/*ArkReactor*
4242

0 commit comments

Comments
 (0)