summaryrefslogtreecommitdiff
path: root/zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/zshrc b/zshrc
index c143d50..f17cb5c 100644
--- a/zshrc
+++ b/zshrc
@@ -72,13 +72,13 @@ if [ -d $ZDOTDIR ]; then
if test -f $subscript
then
__debug -n "${${subscript:h}##$ZDOTDIR\/}/$script... ";
- source $subscript
+ echo source $subscript
__debug
fi
if test -f $subscript.gpg
then
__debug -n "${${subscript:h}##$ZDOTDIR\/}/$script [CRYPTED]... ";
- eval $(gpg --quiet --decrypt $subscript.gpg)
+ echo eval \$(gpg --quiet --decrypt $subscript.gpg)
__debug
fi
@@ -94,7 +94,7 @@ if [ -d $ZDOTDIR ]; then
source $script
__debug
- recurse_load ${${script:t}/??_/} ${script:h}
+ eval $(recurse_load ${${script:t}/??_/} ${script:h})
done
fi