Remove the deploy directory from the code base, as it is not necessary AND it contains an (old) copy of our development config, which should never have been checked into this repository in the first place

This commit is contained in:
Joseph Schorr 2018-01-31 18:57:08 -05:00
parent 43d74d808c
commit 493b278de8
40 changed files with 6 additions and 991 deletions

8
scripts/detect-config.sh Executable file
View file

@ -0,0 +1,8 @@
if find . -name "config.yaml" -exec false {} +
then
exit 0
else
echo '!!! config.yaml found in container !!!'
find . -name "config.yaml"
exit -1
fi