Delete update.bat

This commit is contained in:
root
2026-07-07 22:12:22 +00:00
parent ef7d28284c
commit fa56be5fa5
-24
View File
@@ -1,24 +0,0 @@
@echo off
cd /d "%~dp0"
title SteamPanel Updater
chcp 65001 >nul
if exist "venv\Scripts\python.exe" (
venv\Scripts\python.exe update.py
goto :end
)
python --version >nul 2>&1
if errorlevel 1 (
echo.
echo [!] Python not found.
echo Run run.bat first to set up the environment,
echo or install Python from https://python.org
goto :end
)
python update.py
:end
echo.
pause