3
0
Fork 0
forked from mirrors/nixpkgs

cask: fix issue with 'cask init' command

Fix an issue where 'cask init' would fail due to missing template files.
This commit is contained in:
Forkk 2015-04-13 00:08:26 +02:00
parent cebf589462
commit d385fd9111

View file

@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
install -d "$out/bin"
install bin/cask "$out/bin"
# We also need to install cask's templates in order for 'cask
# init' to work properly.
install -d "$out/templates"
install templates/* "$out/templates"
# In order to work with cask's hard coded file paths (during bootstrap),
# we have to create these links.
ln -s "$out/share/emacs/site-lisp/"* "$out"