1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-21 20:38:54 +00:00

#N/A: Use curl to download get-pip.py on AppVeyor

`curl` seems to be smarter than `net.webclient` when dealing with SSL.
This commit is contained in:
Pablo Santiago Blum de Aguiar 2017-10-06 01:14:35 -03:00
parent 18992f246a
commit c2c98d5f69

View File

@ -13,7 +13,7 @@ init:
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "curl -fsS -o C:/get-pip.py https://bootstrap.pypa.io/get-pip.py"
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe install -U setuptools"
- "%PYTHON%/python.exe setup.py develop"