add update_dependency script

This commit is contained in:
2025-12-07 15:33:15 +11:00
parent b134834170
commit 62dc974fa7
4 changed files with 608 additions and 1 deletions

28
update_dependency.bat Normal file
View File

@@ -0,0 +1,28 @@
@echo off
chcp 65001 >nul
echo ========================================
echo DevourClient Dependency Path Update Script
echo ========================================
echo.
REM Check if PowerShell is available
powershell -Command "exit 0" >nul 2>&1
if errorlevel 1 (
echo Error: PowerShell not found, cannot run script
pause
exit /b 1
)
REM Run PowerShell script
powershell -ExecutionPolicy Bypass -File "%~dp0update_dependency.ps1"
if errorlevel 1 (
echo.
echo Script execution failed!
pause
exit /b 1
) else (
echo.
pause
)