From 41a84bd0ed73c63e220425f14a402d44d9f2ca82 Mon Sep 17 00:00:00 2001 From: William Melody Date: Sun, 28 Jun 2015 17:30:01 -0700 Subject: [PATCH] Uppercase `$_USE_DEBUG` reference in `_debug` This variable was uppercased in a09d0fc but this occurrence was missed. --- hosts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts b/hosts index b293495..00c65a0 100755 --- a/hosts +++ b/hosts @@ -62,7 +62,7 @@ HOSTS_PATH="${HOSTS_PATH:-/etc/hosts}" # variable has been set. The command is expected to print a message and # should typically be either `echo`, `printf`, or `cat`. _debug() { - if [[ "${_use_debug:-"0"}" -eq 1 ]] + if [[ "${_USE_DEBUG:-"0"}" -eq 1 ]] then # Prefix debug message with "bug (U+1F41B)" printf "🐛 "