From 58862956aa6e571cee9b7ade1339481067bfd634 Mon Sep 17 00:00:00 2001 From: NullCode Date: Mon, 25 Apr 2022 13:21:55 +0600 Subject: [PATCH] Revert "Use python -m suffix" --- NullRAT-Helpers/Compiler.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NullRAT-Helpers/Compiler.bat b/NullRAT-Helpers/Compiler.bat index fd129b4..06717ad 100644 --- a/NullRAT-Helpers/Compiler.bat +++ b/NullRAT-Helpers/Compiler.bat @@ -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 ) )