Updated cli_solve.py to use new Zero Install API and report stale feeds
[zeroinstall/solver.git] / install_copy.cmd
blobd8e493f3365158a053004fcecc1ae70674a00f33
1 @echo off
2 ::Copies the Python code into the specified Python directory without actually installing it.
4 if "%1"=="" (
5 echo Missing argument! Please specify target Python installation >&2
6 goto end
9 echo copy /y "%~dp00solve" %1\Scripts\0solve
10 xcopy "%~dp0zeroinstall" %1\Lib\site-packages\zeroinstall /e /i /y
12 :end