com.stephenschafer.budget/run-init-db

10 lines
188 B
Text
Raw Normal View History

2026-01-17 09:50:26 -07:00
#!/bin/bash
cd "$(dirname "${BASH_SOURCE[0]}")"
if ./run init-db budget.properties > run-init-db.log 2> run-init-db.err.log; then
echo "success"
else
echo "failure"
exit 1
fi