From 386488c833a007c2fda1011ba2db4e86a0840307 Mon Sep 17 00:00:00 2001 From: Richard Nelson Date: Wed, 19 Dec 2012 22:15:24 -0600 Subject: Unify _DEBUG variable values to be true or false for l-b-cgi. --- frontends/cgi/live-build-cgi.cron | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontends/cgi/live-build-cgi.cron') diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron index 2f5cf043e..1d21f8f02 100755 --- a/frontends/cgi/live-build-cgi.cron +++ b/frontends/cgi/live-build-cgi.cron @@ -20,15 +20,15 @@ else fi # Exit if disabled -if [ "${_WEBBUILD}" != "enabled" ] +if [ "${_WEBBUILD}" != "true" ] then exit 0 fi _HOSTNAME="$(hostname -f)" -# Turn on debug if enabled -if [ "${_DEBUG}" = "enabled" ] +# Turn on debug if true +if [ "${_DEBUG}" = "true" ] then set -x fi -- cgit v1.2.3