]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/functions: Cleanup.
authorSimon Ruderich <simon@ruderich.org>
Wed, 3 Apr 2013 21:39:01 +0000 (23:39 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 7 Apr 2013 02:02:43 +0000 (04:02 +0200)
shell/functions

index 10283a393f3903afd5aba46178bc26eb933c4bc4..19109e753aa2c04af9983ba55670dece40bb85b4 100644 (file)
@@ -21,7 +21,7 @@
 # Doesn't fit perfectly in this file, but this is the best place to make it
 # available everywhere.
 source_debug() {
-    if [ x$DEBUG != x ]; then
+    if test "x$DEBUG" != x; then
         echo "$@"
     fi
 }
@@ -30,14 +30,14 @@ source_debug() {
 source_config() {
     source_debug "source_config(): $1"
 
-    if [ -f $1 ]; then
+    if test -f "$1"; then
         source_debug ". $1"
-        . $1
+        . "$1"
     fi
 
-    if [ -f $1.local ]; then
+    if test -f "$1.local"; then
         source_debug ". $1.local"
-        . $1.local
+        . "$1.local"
     fi
 }