8 lines
181 B
Bash
Executable file
8 lines
181 B
Bash
Executable file
#!/bin/bash
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
if java -cp target/*.jar com.stephenschafer.budget.schema.Schema "$@"; then
|
|
echo "success"
|
|
else
|
|
echo "failure"
|
|
exit 1
|
|
fi
|