Skip to content

Commit 33b84fb

Browse files
committed
These don't need to be all PowerShell
1 parent c6976c0 commit 33b84fb

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

appveyor.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ init:
2424
- "ECHO %PYTHON%"
2525
- ps: "ls C:/Python*"
2626
install:
27-
- ps: >
28-
git -C $env:APPVEYOR_BUILD_FOLDER submodule update --init;
29-
(new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py');
30-
"$env:PYTHON"\python.exe C:/get-pip.py;
31-
"$env:PYTHON"\Scripts\pip.exe --version;
32-
"$env:PYTHON"\Scripts\pip.exe install wheel;
33-
"$env:PYTHON"\Scripts\pip.exe install -e .
27+
- git -C %PPVEYOR_BUILD_FOLDER% submodule update --init
28+
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
29+
- %PYTHON%\python.exe C:/get-pip.py
30+
- %PYTHON%\Scripts\pip.exe --version
31+
- %PYTHON%\Scripts\pip.exe install wheel
32+
- %PYTHON%\Scripts\pip.exe install -e .
3433
build: false
3534
test_script:
3635
- "dir \"C:\\Program Files (x86)\""

0 commit comments

Comments
 (0)