summaryrefslogtreecommitdiff
path: root/scripts/resolve-bug
diff options
context:
space:
mode:
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."