Skip to content

Commit b12cc9d

Browse files
committed
Fix TYPO
1 parent 7240617 commit b12cc9d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

run.bat

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
ECHO  Welcome to "Protect Python code and expose as exe file" 
33
ECHO.
44
ECHO  Installing cython and pyinstaller 
5-
REM pip install pyinstaller
6-
REM pip install cython
5+
pip install pyinstaller
6+
pip install cython
77

88
IF EXIST __result__ (
99
ECHO  Remove __result__ directory from: %cd%! 
@@ -42,6 +42,7 @@ ECHO  Modify .\__result__\main.py, to be able run application from main
4242
PAUSE
4343

4444
ECHO  Building app 
45-
python .\__result__\compile.py build_ext --inplace
45+
cd .\__result__
46+
python .\compile.py build_ext --inplace
4647
REM pyinstaller .\main.py
4748
PAUSE

0 commit comments

Comments
 (0)