From 54d8c00aaaaff7fc2745ad8103926c89ecaf8812 Mon Sep 17 00:00:00 2001 From: Eduardo MG Date: Mon, 27 Mar 2023 19:16:40 -0600 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index ea8ca42eb..c3c6562f1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,8 +22,8 @@ environment: # scripts that run after cloning repository install: - - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') - - "C:/Python27/python.exe C:/get-pip.py" + - powershell -Command "& {(new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')}" + - powershell -Command "& {C:/Python27/python.exe C:/get-pip.py}" - "C:/Python27/Scripts/pip.exe install pyjavaproperties" - "C:/Python27/Scripts/pip.exe install github3.py"