From 3e8388f8fdc143f54ca48a1b7777ab18bc37e062 Mon Sep 17 00:00:00 2001 From: Dalf Date: Tue, 30 Jul 2019 09:18:09 +0200 Subject: [PATCH] *.sh: remove the check of .env modifications The check was not accurate. --- util.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/util.sh b/util.sh index a5b5727..9cfd4d0 100644 --- a/util.sh +++ b/util.sh @@ -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