all repos — nixfiles @ fa4613b16d19a7389d056f9ad10c2d9590ef1097

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

rcm: Install Cask for Emacs if it isn't already
Alan Pearce alan@alanpearce.co.uk
Sun, 27 Apr 2014 12:28:08 +0100
commit

fa4613b16d19a7389d056f9ad10c2d9590ef1097

parent

bdf40c97b2fdb48aa509c76ba1ad3f5d86839fb6

1 files changed, 10 insertions(+), 4 deletions(-)

jump to
M hooks/post-up/emacshooks/post-up/emacs
@@ -2,11 +2,17 @@ #!/usr/bin/env zsh 
 if [[ -s $commands[emacs] ]]
 then
-	if [[ -s $commands[cask] ]]
+	if [[ -z $commands[cask] ]]
 	then
-		pushd ~/.emacs.d
-		cask install
-		popd
+		git clone git://github.com/cask/cask ~/.cask
+		if [[ ! -d ~/bin ]]
+		then
+			mkdir ~/bin
+		fi
+		ln -s ~/.cask/bin/cask ~/bin/cask
 	fi
+	pushd ~/.emacs.d
+	cask install
+	popd
 	emacs --batch --eval '(batch-byte-recompile-directory 0)' ~/.emacs.d/
 fi