treasuredb/t/schema.sh

5 lines
120 B
Bash
Raw Normal View History

echo "My database file: $1"
if sqlite3 $1 < schema.sql; then
diff t/schema.out <(sqlite3 $1 < t/schema.sql 2>&1)
fi