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 20f5afe commit 9dc08ffCopy full SHA for 9dc08ff
.github/workflows/test.yml
@@ -27,7 +27,9 @@ jobs:
27
luarocks install luasec
28
29
- name: fetch dependencies
30
- run: ./fetch-deps.sh
+ run: |
31
+ chmod +x ./fetch-deps.sh
32
+ ./fetch-deps.sh
33
34
- name: test
35
run: |
fetch-deps.sh
@@ -34,6 +34,8 @@ fetch() {
done < <(echo "$files_txt")
}
36
37
+mkdir -p $targetFolderName
38
+
39
for i in "${libs[@]}"; do
40
fetch "$i"
41
done
0 commit comments