Fix all 47 bugs — hardened attack engine, UI/UX, proxy, CAPTCHA, config
This commit is contained in:
15
GODCWAK.bat
15
GODCWAK.bat
@@ -36,6 +36,21 @@ if "%PYTHON_EXE%"=="" (
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
:: bug #36: first-run detection — install requirements if not yet done
|
||||
set SENTINEL="%~dp0.installed"
|
||||
if not exist %SENTINEL% (
|
||||
echo [SETUP] First run detected — installing requirements...
|
||||
"%PYTHON_EXE%" %PYTHON_ARGS% -m pip install -r requirements.txt
|
||||
if %ERRORLEVEL% NEQ 0 (
|
||||
echo [ERROR] pip install failed. Check requirements.txt and your Python environment.
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
echo. > %SENTINEL%
|
||||
echo [SETUP] Dependencies installed successfully.
|
||||
echo.
|
||||
)
|
||||
|
||||
:: Launch
|
||||
"%PYTHON_EXE%" %PYTHON_ARGS% main.py
|
||||
|
||||
|
||||
Reference in New Issue
Block a user