From: Simon Ruderich Date: Sat, 18 Sep 2010 22:49:33 +0000 (+0200) Subject: shell/functions: Improve source_debug() output. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=9ea88c819886bb8f983e2070a301efd8cae94637 shell/functions: Improve source_debug() output. --- 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 }