Skip to content

Commit 9dc08ff

Browse files
committed
mkdir targetFolder
1 parent 20f5afe commit 9dc08ff

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
luarocks install luasec
2828
2929
- name: fetch dependencies
30-
run: ./fetch-deps.sh
30+
run: |
31+
chmod +x ./fetch-deps.sh
32+
./fetch-deps.sh
3133
3234
- name: test
3335
run: |

fetch-deps.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ fetch() {
3434
done < <(echo "$files_txt")
3535
}
3636

37+
mkdir -p $targetFolderName
38+
3739
for i in "${libs[@]}"; do
3840
fetch "$i"
3941
done

0 commit comments

Comments
 (0)