Forgot to disable DEBUG by default

This commit is contained in:
gardouille 2021-07-02 15:30:17 +02:00
parent 051c364d95
commit 91b9699b69
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
readonly PROGNAME=$(basename "${0}")
readonly NBARGS="${#}"
## Test if DEBUG is already defined (by parent script,…)
[ -z "${DEBUG}" ] && DEBUG=0
[ -z "${DEBUG}" ] && DEBUG=1
## Colors
readonly PURPLE='\033[1;35m'