com.stephenschafer.budget/run-load-csv

9 lines
205 B
Text
Raw Permalink Normal View History

2025-07-13 08:15:02 -06:00
#!/bin/bash
cd "$(dirname "${BASH_SOURCE[0]}")"
2026-01-17 09:50:26 -07:00
if ./run load-csv budget.properties trilium Budget > run-load-csv.log 2> run-load-csv.err.log; then
echo "success"
else
echo "failure"
exit 1
fi