Skip to content

Commit 5886295

Browse files
authored
Revert "Use python -m suffix"
1 parent 97c8204 commit 5886295

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

NullRAT-Helpers/Compiler.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ if %upxdd%==yes (set path=%path%;%~dp0NullRAT\upx)
6060

6161
if %pyarmor%==yes (
6262
if %icon%==yes (
63-
python -m pyarmor pack -e " --onefile --noconsole --icon=custom_icon.ico " RAT.py
63+
pyarmor pack -e " --onefile --noconsole --icon=custom_icon.ico " RAT.py
6464
) else (
65-
python -m pyarmor pack -e " --onefile --noconsole " RAT.py
65+
pyarmor pack -e " --onefile --noconsole " RAT.py
6666
)
6767
) else (
6868
if %icon%==yes (
69-
python -m pyinstaller --onefile --noconsole --icon=custom_icon.ico RAT.py
69+
pyinstaller --onefile --noconsole --icon=custom_icon.ico RAT.py
7070
) else (
71-
python -m pyinstaller --onefile --noconsole RAT.py
71+
pyinstaller --onefile --noconsole RAT.py
7272
)
7373
)
7474

0 commit comments

Comments
 (0)