all repos — nixfiles @ 40d623657794a009617ca0b28634649914870d02

System and user configuration, managed by nix and home-manager

Migrate post-checkout hook code to install and run install from post-checkout hook
Alan Pearce alan@alanpearce.co.uk
Sat, 18 May 2013 21:16:52 +0100
commit

40d623657794a009617ca0b28634649914870d02

parent

5649afdf7e4ab16bbbe8f9fb9c487125efa76b5f

2 files changed, 33 insertions(+), 31 deletions(-)

jump to
M git-hooks/post-checkoutgit-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"
M installinstall
@@ -43,3 +43,35 @@ install-dot projects/dwm/ dotfiles/dwm/* 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