6 lines
164 B
Bash
Executable file
6 lines
164 B
Bash
Executable file
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd ${DIR}
|
|
./update.sh &
|
|
source ./.venv/bin/activate
|
|
python3 delojza.py 2>&1 |tee -a delojza.log
|