From dc5e55f9968b8dfdd5d7287732489091fbd11ee2 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 8 Feb 2009 16:47:29 +0100 Subject: [PATCH] New function source_debug(). Prints given arguments if $DEBUG is non empty. At the moment only used by source_config(). --- shell/env | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/shell/env b/shell/env index be55b4e..e30b272 100644 --- a/shell/env +++ b/shell/env @@ -1,6 +1,17 @@ # Configuration file for environment related options for all shells. +# Helper function to print debug information if $DEBUG is not empty. +# +# Doesn't fit perfectly in this file, but this is the best place to make it +# available everywhere. +function source_debug() { + if [ x$DEBUG != x ]; then + echo $@ + fi +} + + # Use UTF-8 encoding in the terminal. LC_ALL=en_US.UTF-8 LANG=$LC_ALL @@ -88,24 +99,18 @@ function source_config() { local source_file_local=$1/$3.local # Additional debug output. - if [ x$DEBUG != x ]; then - echo "source_config(): checking if $source_file exists" - echo "source_config(): checking if $source_file_local exists" - fi + source_debug "source_config(): checking if $source_file exists" + source_debug "source_config(): checking if $source_file_local exists" # If the file does exist then source it. if [ -f $source_file ]; then - if [ x$DEBUG != x ]; then - echo "source_config(): sourcing $source_file" - fi + source_debug "source_config(): sourcing $source_file" source $source_file # Otherwise load the .local file if it exists and .local files are # allowed. elif [ -f $source_file_local -a x$5 != xnolocal ]; then - if [ x$DEBUG != x ]; then - echo "source_config(): sourcing $source_file_local" - fi + source_debug "source_config(): sourcing $source_file_local" source $source_file_local fi } -- 2.44.1