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