X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Ffunctions;h=4de94539ef11889737734cda42c9049d1bb48101;hb=af2d803036e0f3f30c1c685dcbae187bf4b06841;hp=308252bad0c581c1b9a3ee25e8e86e01033a88fe;hpb=9598f48f59d3ad70faac00f5c4c9466d28591a7e;p=config%2Fdotfiles.git diff --git a/shell/functions b/shell/functions index 308252b..4de9453 100644 --- a/shell/functions +++ b/shell/functions @@ -16,12 +16,12 @@ source_config() { source_debug "source_config(): $1" if [ -f $1 ]; then - source_debug "source_config(): . $1" + source_debug ". $1" . $1 fi if [ -f $1.local ]; then - source_debug "source_config(): . $1.local" + source_debug ". $1.local" . $1.local fi }