Merged changes from master
[zeroinstall/solver.git] / install_full.cmd
blob616e9965a7fd5f7cd00fad8f4da23010c407ac78
1 @echo off
2 ::Installs the Python code into the specified Python installation.
3 cd /d "%~dp0"
5 if "%1"=="" (
6 echo Missing argument! Please specify target Python installation >&2
7 goto end
10 %1\python.exe setup.py install
12 :end