diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-10-15 23:27:16 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-10-15 23:27:16 -0400 |
commit | 97d2fbde7366073035ff11f93c6bc7c1879e5713 (patch) | |
tree | 15b7b03c5798b3889c923c29c2fe85bed8ec4c60 /neovim.rb | |
parent | f68e7aba2c6ac3fe90a5f550e4b16e385882d16a (diff) | |
parent | 92b17e174f19a0a851a595d63663cda4cb8ac336 (diff) | |
download | rneovim-97d2fbde7366073035ff11f93c6bc7c1879e5713.tar.gz rneovim-97d2fbde7366073035ff11f93c6bc7c1879e5713.tar.bz2 rneovim-97d2fbde7366073035ff11f93c6bc7c1879e5713.zip |
Merge pull request #1293 from justinmk/homebrew
handle missing git or .git/
Diffstat (limited to 'neovim.rb')
-rw-r--r-- | neovim.rb | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10,6 +10,7 @@ class Neovim < Formula depends_on "autoconf" => :build def install + ENV["GIT_DIR"] = cached_download/".git" if build.head? ENV.deparallelize system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install" end |