From 4213eb22db841e0ca8d352fda389b7be6e2f6acf Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 3 Apr 2013 23:39:01 +0200 Subject: [PATCH] shell/functions: Cleanup. --- shell/functions | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shell/functions b/shell/functions index 10283a3..19109e7 100644 --- a/shell/functions +++ b/shell/functions @@ -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 } -- 2.43.2