Skip to content

Commit bf3b317

Browse files
committed
debug
1 parent 6697477 commit bf3b317

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

action.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,17 @@ runs:
1818
- name: Set GitHub Path
1919
run: |
2020
echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH
21-
echo "$PWD/.arkscript/" >> $GITHUB_PATH
22-
echo "ARKSCRIPT_PATH=$PWD/.arkscript/lib/" >> $GITHUB_ENV
21+
echo "$PWD/.arkscript" >> $GITHUB_PATH
22+
echo "ARKSCRIPT_PATH=$PWD/.arkscript/lib" >> $GITHUB_ENV
2323
shell: bash
2424
env:
2525
GITHUB_ACTION_PATH: ${{ github.action_path }}
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)