From 67745839dbd92fed8ded3b0f1ea43a1658140bf3 Mon Sep 17 00:00:00 2001 From: brockdarnold Date: Sun, 14 Jun 2026 15:15:14 +0000 Subject: [PATCH] publish start-all.ps1 --- start-all.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start-all.ps1 b/start-all.ps1 index 070eeb6..7124630 100644 --- a/start-all.ps1 +++ b/start-all.ps1 @@ -13,8 +13,8 @@ if (Get-Command python -ErrorAction SilentlyContinue) { Write-Warning "Python not found - run setup.ps1 first."; exit 1 } -# Headless intel watchers (run continuously, no interaction needed) -$watchers = @("eve_combat_watcher.py", "eve_chat_watcher.py") +# Headless intel watchers + the auto-update poller (run continuously, no interaction) +$watchers = @("eve_combat_watcher.py", "eve_chat_watcher.py", "eve_autoupdate.py") foreach ($w in $watchers) { Start-Process pythonw -ArgumentList "`"$here\$w`"" -WorkingDirectory $here -WindowStyle Hidden Write-Host "started $w"