1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-18 20:11:17 +00:00

Merge pull request #705 from scorphus/fix-appveyor-build

#N/A: Use curl to download get-pip.py on AppVeyor
This commit is contained in:
Vladimir Iakovlev 2017-10-06 07:55:55 +02:00 committed by GitHub
commit edac010a7b

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"