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-regex budget.properties > run-load-regex.log 2> run-load-regex.err.log; then
|
|
|
|
|
echo "success"
|
|
|
|
|
else
|
|
|
|
|
echo "failure"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2025-07-13 08:15:02 -06:00
|
|
|
|