summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@qosmos.com>2014-10-24 14:47:54 +0200
committerHugues Hiegel <hugues.hiegel@qosmos.com>2014-10-24 14:47:54 +0200
commit023d346fe6110263119eeca74c73eded27c42bbc (patch)
tree8f0baea3c5932f6d301d8c2abaa4eab1ed47e428
parentde8cb6c64e9d2ae451a969ed6cd2af79a30fbc2d (diff)
[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