]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/functions: Improve source_debug() output.
authorSimon Ruderich <simon@ruderich.org>
Sat, 18 Sep 2010 22:49:33 +0000 (00:49 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 18 Sep 2010 22:49:33 +0000 (00:49 +0200)
shell/functions

index 308252bad0c581c1b9a3ee25e8e86e01033a88fe..4de94539ef11889737734cda42c9049d1bb48101 100644 (file)
@@ -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
 }