com.stephenschafer.budget/run-process

9 lines
189 B
Text
Raw 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 process budget.properties > run-process.log 2> run-process.err.log; then
echo "success"
else
echo "failure"
return 1
fi