From 7af1fc94d84399f440b9959fe73380f9d3f002e6 Mon Sep 17 00:00:00 2001 From: Eric Gallager Date: Fri, 10 Nov 2023 15:36:32 -0500 Subject: [PATCH] Update appveyor.yml might need to make scripts dir before downloading to it... --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 47082f779..f9e9cd6d2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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