forked from mirrors/gecko-dev
Updated to 3.2.5. MozReview-Commit-ID: 34OG1iGeMVW --HG-- extra : rebase_source : 3ffa191b142f60897abb0728f53e71b8cda52701
6 lines
322 B
Batchfile
6 lines
322 B
Batchfile
REM install pypy using choco
|
|
REM redirect to a file because choco install python.pypy is too noisy. If the command fails, write output to console
|
|
choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
|
|
set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
|
|
echo PyPy installed
|
|
pypy --version
|