summaryrefslogtreecommitdiff
path: root/scripts/resolve-bug
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-16 08:53:44 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-16 08:53:44 +0000
commit7d627d16cd4bb88e625291dff4cc886c68dbf785 (patch)
tree2cc1b6c4a338a202aaf46083b65254bc62f031e0 /scripts/resolve-bug
parent2be0b6a90cd83c8052ee13a172217e4a355c7df7 (diff)
chore: migrate deploy + ops scripts from SSH to local execution
Replace SSH-based deploy.sh with scripts/deploy that runs locally on the server. Update scripts/bugs, scripts/logs, and scripts/resolve-bug to drop SSH wrappers. Update CLAUDE.md and DESIGN.md to reflect new local workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'scripts/resolve-bug')
-rwxr-xr-xscripts/resolve-bug4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/resolve-bug b/scripts/resolve-bug
index a3f0979..1fcf5df 100755
--- a/scripts/resolve-bug
+++ b/scripts/resolve-bug
@@ -10,10 +10,10 @@ BUG_ID="$1"
# Show the bug being resolved
echo "Resolving bug #$BUG_ID:"
-ssh titanium "sqlite3 -column /site/doot.terst.org/data/dashboard.db \"SELECT description FROM bugs WHERE id = $BUG_ID\""
+sqlite3 -column /site/doot.terst.org/data/dashboard.db "SELECT description FROM bugs WHERE id = $BUG_ID"
# Delete the bug
-ssh titanium "sqlite3 /site/doot.terst.org/data/dashboard.db \"DELETE FROM bugs WHERE id = $BUG_ID\""
+sqlite3 /site/doot.terst.org/data/dashboard.db "DELETE FROM bugs WHERE id = $BUG_ID"
if [ $? -eq 0 ]; then
echo "Bug #$BUG_ID resolved."