X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=595115370245783eb67c48ae970aff3e880bcbf8;hb=0d1c3c96beca1d3667df0fc7985423fab82d8086;hp=c654613b77a9c838b5284aa159cdecd3991a3fdf;hpb=c3ccdced26ff5d9baf36858968701e7b12447cd6;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index c654613..5951153 100644 --- a/shell/env +++ b/shell/env @@ -106,16 +106,16 @@ function source_config() { # If the file does exist then source it. if [ -f $source_file ]; then - source_debug "source_config(): sourcing $source_file" + 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 - source_debug "source_config(): sourcing $source_file_local" + source_debug "source_config(): -> sourcing $source_file_local" source $source_file_local else - source_debug "source_config(): neither exists" + source_debug "source_config(): -> neither exists" fi }