9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/bin/bash
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
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
|
|
|