Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
might need to make scripts dir before downloading to it...
  • Loading branch information
cooljeanius committed Nov 10, 2023
1 parent 2970ce5 commit 7af1fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install:
lein self-install
lein version
- cmd: bash -cvx "if test ! -e scripts/lein.bat; then if test -x \"$(which wget)\"; then wget 'https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein.bat' -O scripts/lein.bat; elif test -x \"$(which curl)\"; then curl 'https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein.bat' -o scripts/lein.bat; fi; lein self-install; lein version; fi"
- cmd: bash -cvx "if test ! -e scripts/lein.bat; then if test ! -d scripts; then mkdir scripts; fi; if test -x \"$(which wget 2>/dev/null)\"; then wget 'https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein.bat' -O scripts/lein.bat; elif test -x \"$(which curl)\"; then curl 'https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein.bat' -o scripts/lein.bat; fi; lein self-install; lein version; fi"
- cmd: call "scripts\lein.bat" self-install
- cmd: lein version
- ps: Install-Product node $env:nodejs_version x64
Expand Down

0 comments on commit 7af1fc9

Please sign in to comment.