From 23f1212b00649b4b7eb18ec7c03313e45168f4ca Mon Sep 17 00:00:00 2001 From: Jason Mehring Date: Thu, 6 Nov 2014 23:56:57 -0500 Subject: [PATCH] VERBOSE and DEBUG will default to defaults if not called by Makefile --- functions.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/functions.sh b/functions.sh index 6ded53f..ccbcb71 100755 --- a/functions.sh +++ b/functions.sh @@ -3,6 +3,9 @@ set -e +VERBOSE=${VERBOSE:-1} +DEBUG=${DEBUG:-0} + ################################################################################ # Global functions ################################################################################