mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
7be5cfa449
.gitkeep was making the wrapper think config was present on fresh boot.. Whoops!
12 lines
340 B
Bash
12 lines
340 B
Bash
#!/bin/sh
|
|
|
|
# Check if config exists from existing installation (venv or previous docker launch)
|
|
if [ ! "$(ls -A --ignore=.gitkeep ./app/config)" ]; then
|
|
mkdir ./app/config/
|
|
cp -r ./app/config_original/* ./app/config/
|
|
fi
|
|
|
|
# Activate our prepared venv and launch crafty with provided args
|
|
. .venv/bin/activate
|
|
exec python3 main.py $@
|