diff options
Diffstat (limited to 'build-windows.sh')
-rwxr-xr-x | build-windows.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build-windows.sh b/build-windows.sh index 2dba3cf..513bf17 100755 --- a/build-windows.sh +++ b/build-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 -PYTHONPATH="." mvc-env/Scripts/python.exe setup.py bdist_nsis +PYTHONPATH="." lvc-env/Scripts/python.exe setup.py bdist_nsis |