From 9ea88c819886bb8f983e2070a301efd8cae94637 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 19 Sep 2010 00:49:33 +0200 Subject: [PATCH] shell/functions: Improve source_debug() output. --- shell/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/functions b/shell/functions index 308252b..4de9453 100644 --- a/shell/functions +++ b/shell/functions @@ -16,12 +16,12 @@ source_config() { source_debug "source_config(): $1" if [ -f $1 ]; then - source_debug "source_config(): . $1" + source_debug ". $1" . $1 fi if [ -f $1.local ]; then - source_debug "source_config(): . $1.local" + source_debug ". $1.local" . $1.local fi } -- 2.44.1