diff options
Diffstat (limited to 'run-windows.sh')
-rwxr-xr-x | run-windows.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/run-windows.sh b/run-windows.sh index 728a876..8531708 100755 --- a/run-windows.sh +++ b/run-windows.sh @@ -1,12 +1,12 @@ #!/bin/sh -if [ ! -e mvc-env ] ; then +if [ ! -e lvc-env ] ; then echo "LVC virtualenv is not present. Run " echo - echo " python helperscripts/windows-virtualenv/ mvc-env" + echo " python helperscripts/windows-virtualenv/ lvc-env" echo echo "to build it" exit 1 fi -mvc-env/Scripts/python.exe setup.py py2exe && ./dist/mvcdebug.exe +lvc-env/Scripts/python.exe setup.py py2exe && ./dist/lvcdebug.exe |