Files
StudioLift/scripts/install-skills.bat

13 lines
344 B
Batchfile

@echo off
rem Trae CN skill installer launcher - double click to run
rem Actual logic lives in install-skills.ps1 (same folder)
cd /d "%~dp0"
if not exist "install-skills.ps1" (
echo [ERROR] install-skills.ps1 not found in %~dp0
pause
exit /b 1
)
powershell -NoProfile -ExecutionPolicy Bypass -File "install-skills.ps1"
echo.
pause