*.sh: remove the check of .env modifications

The check was not accurate.
This commit is contained in:
Dalf 2019-07-30 09:18:09 +02:00
parent 5b8b8720b4
commit 3e8388f8fd

View file

@ -24,8 +24,3 @@ if [ ! -f "${DOCKERCOMPOSEFILE}" ]; then
echo "${DOCKERCOMPOSEFILE} not found" 1>&2
exit 1
fi
if [ -x $(git diff --name-only | grep .env) ]; then
echo "The .env must be changed" 1>&2
exit 1
fi