summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@qosmos.com>2014-10-24 14:48:04 +0200
committerHugues Hiegel <hugues.hiegel@qosmos.com>2014-10-24 14:48:04 +0200
commit494c2b2cf2b6894bfbdadbae3e5e2ff31c615813 (patch)
tree5053363aa7cba529d4728e1aecf9f761ff4ee9fe
parent87cf71abfdf00338a263f49622674c65479d5e18 (diff)
parent023d346fe6110263119eeca74c73eded27c42bbc (diff)
Merge branch 'master' into HackyGit
-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