# If DEBUG is set to a non empty value additional debug output is printed.
function source_config() {
# Path to the file to source and its local counterpart.
- local source_file=$1/$2/$3.$4
- local source_file_local=$1/$3.local
+ source_file=$1/$2/$3.$4
+ source_file_local=$1/$3.local
# Additional debug output.
source_debug "source_config(): checking if $source_file exists"
else
source_debug "source_config(): -> neither exists"
fi
+
+ unset source_file source_file_local
}
source_debug "finished sourcing ~/.shell/env"