chore: ensure nexe directory exists before downloading node to it

This commit is contained in:
Alexis
2021-09-29 16:57:34 +09:30
parent 2de938acd2
commit 5077563acc
+1 -1
View File
@@ -182,7 +182,7 @@ jobs:
- name: Pre-download node for nexe
shell: bash
run: wget -O /home/runner/.nexe/linux-x64-14.15.3 -c https://github.com/nexe/nexe/releases/download/v3.3.3/linux-x64-14.15.3 && chmod +x /home/runner/.nexe/linux-x64-14.15.3
run: mkdir -p /home/runner/.nexe && wget -O /home/runner/.nexe/linux-x64-14.15.3 -c https://github.com/nexe/nexe/releases/download/v3.3.3/linux-x64-14.15.3 && chmod +x /home/runner/.nexe/linux-x64-14.15.3
- name: Install upx
shell: bash