Check if configfile needs to be updated
This commit is contained in:
parent
1fdc7889cf
commit
d7e47a0ff0
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,11 @@ fi
|
|||
echo "Pulling from remote."
|
||||
git pull
|
||||
|
||||
if [[ config.py.example -nt config.py ]]; then
|
||||
echo "Example config file is newer than the current config file. Plsfix."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Updating dependencies."
|
||||
~/env/bin/pip install requirements.txt
|
||||
|
||||
|
|
Loading…
Reference in a new issue