diff options
-rwxr-xr-x | git-hooks/post-checkout | 32 | ||||
-rwxr-xr-x | install | 32 |
2 files changed, 33 insertions, 31 deletions
diff --git a/git-hooks/post-checkout b/git-hooks/post-checkout index 910716f..96f2200 100755 --- a/git-hooks/post-checkout +++ b/git-hooks/post-checkout @@ -1,32 +1,2 @@ #!/usr/bin/env zsh -if [[ -x =emacs ]] -then - emacs --batch -f batch-byte-compile ~/.emacs.d/init.el - emacs --batch -f batch-byte-compile ~/.emacs.d/elisp/*.el -fi - -fasd_cache=~/.zsh/cache/fasd-init-zsh -if [[ ! -s "$fasd_cache" || zsh/functions/fasd -nt "$fasd_cache" ]]; then - zsh/functions/fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install >! "$fasd_cache" -fi - -autoload -U zrecompile -local -a zfiles -zfiles=( - zsh/functions/fasd/fasd - $fasd_cache - zsh/zshrc - zsh/zshrc_${HOST%%.*} -) -if [[ -e /usr/bin/emerge ]]; then - zfiles+=zsh/zshrc_gentoo -fi -if [[ $OSTYPE == freebsd ]]; then - zfiles+=zsh/zshrc_freebsd -fi - -zrecompile -p -R ~/.zshrc.zwc $zfiles - -for fp in zsh/functions/*(/); do - zrecompile -p $fp $fp/* -done +exec "$GIT_DIR/../install" diff --git a/install b/install index 0596b3e..96ea441 100755 --- a/install +++ b/install @@ -43,3 +43,35 @@ then fi popd + +if [[ -x =emacs ]] +then + emacs --batch -f batch-byte-compile ~/.emacs.d/init.el + emacs --batch -f batch-byte-compile ~/.emacs.d/elisp/*.el +fi + +fasd_cache=~/.zsh/cache/fasd-init-zsh +if [[ ! -s "$fasd_cache" || zsh/functions/fasd -nt "$fasd_cache" ]]; then + zsh/functions/fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install >! "$fasd_cache" +fi + +autoload -U zrecompile +local -a zfiles +zfiles=( + zsh/functions/fasd/fasd + $fasd_cache + zsh/zshrc + zsh/zshrc_${HOST%%.*} +) +if [[ -e /usr/bin/emerge ]]; then + zfiles+=zsh/zshrc_gentoo +fi +if [[ $OSTYPE == freebsd ]]; then + zfiles+=zsh/zshrc_freebsd +fi + +zrecompile -p -R ~/.zshrc.zwc $zfiles + +for fp in zsh/functions/*(/); do + zrecompile -p $fp $fp/* +done |