]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/functions
shell/functions: Improve source_debug() output.
[config/dotfiles.git] / 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
 }