8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/bin/bash
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
if ./run process budget.properties > run-process.log 2> run-process.err.log; then
|
|
echo "success"
|
|
else
|
|
echo "failure"
|
|
return 1
|
|
fi
|