summaryrefslogtreecommitdiff
path: root/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'hooks')
-rw-r--r--hooks/post-update3
1 files changed, 2 insertions, 1 deletions
diff --git a/hooks/post-update b/hooks/post-update
index b4f977d..aec203d 100644
--- a/hooks/post-update
+++ b/hooks/post-update
@@ -7,6 +7,7 @@ echo -n > $PDIR/zsh/provided/env
typeset -a futurepath
for inc in $PDIR/*/provides/zsh/{functions,completions}(N); {
+ inc=${inc/$HOME/\$HOME}
futurepath+=$inc
}
if [[ -n $futurepath ]] {
@@ -17,7 +18,7 @@ for inc in $PDIR/*/provides/zsh/functions(N); {
}
for snippet in $PDIR/*/provides/zsh/*(.N); {
- echo "source $snippet" >> $PDIR/zsh/provided/includes
+ echo "source ${snippet/$HOME/\$HOME}" >> $PDIR/zsh/provided/includes
}
cd $PDIR/zsh/etc