summaryrefslogtreecommitdiff
path: root/tools/undo.sh
blob: 716e88bf7e624432f9a85de3379e987c9ef6944b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
if [ -n "$1" ]
then
	COUNT=$(sqlite3 db "select count(1) from game_replay where game_id=$1")
	echo Game has $COUNT actions.
	sqlite3 db "delete from game_replay where game_id=$1 and replay_id=$COUNT"
	node tools/patchgame.js $1
else
	echo "usage: bash tools/undo.sh GAME"
fi