From: Simon Ruderich Date: Wed, 3 Apr 2013 21:39:01 +0000 (+0200) Subject: shell/functions: Cleanup. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=4213eb22db841e0ca8d352fda389b7be6e2f6acf shell/functions: Cleanup. --- 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 }