- Restore FIRST-RUN.md onboarding guide - Pin environment.yml to requirements.txt (was loose 24 packages) - Remove debug screenshots from git (debug_*.png -> .gitignore) - Remove .hermes/ dev plans from git (already in .gitignore) - Archive botty_next/ test harness to alexpolo1/my-botty-tools - Archive docs/legacy-go/ to alexpolo1/my-botty-tools - Move 14 dev tools from repo root to tools/ directory - Extend .gitignore to prevent dev artifacts re-entering root - Promote stable branch with all bug fixes from main - Bump version 0.8.4 -> 0.9.1
39 lines
826 B
Batchfile
39 lines
826 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
cd /d "%~dp0"
|
|
|
|
echo ============================================
|
|
echo Botty - Updater
|
|
echo ============================================
|
|
echo.
|
|
|
|
:: --- Check git is available ---
|
|
where git >nul 2>&1
|
|
if %errorlevel% neq 0 (
|
|
echo ERROR: git is not installed or not in PATH.
|
|
echo Download from: https://git-scm.com/download/win
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
:: --- Pull latest changes ---
|
|
echo Pulling latest changes from GitHub...
|
|
echo.
|
|
git pull
|
|
if %errorlevel% neq 0 (
|
|
echo.
|
|
echo ERROR: git pull failed. See output above.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo ============================================
|
|
echo Update complete! Re-run install.bat if
|
|
echo environment.yml changed, then run_botty.bat
|
|
echo ============================================
|
|
echo.
|
|
pause
|