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