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