aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Belaire <theobelaire@khanacademy.org>2014-02-25 18:31:01 -0800
committeraph <a.hewson@gmail.com>2014-03-01 22:21:08 +0000
commitf133ce130e1e751a76f749c5f87a84d66e491e16 (patch)
treea2342506cae315f6ef42d7351f9be518bd31b76c
parentf3aa6dc8f08f9cd4c8353ce8c4b8eef2e0d30a67 (diff)
downloadrneovim-f133ce130e1e751a76f749c5f87a84d66e491e16.tar.gz
rneovim-f133ce130e1e751a76f749c5f87a84d66e491e16.tar.bz2
rneovim-f133ce130e1e751a76f749c5f87a84d66e491e16.zip
Fixed nvim homebrew formula
I now also do make install
-rw-r--r--neovim.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/neovim.rb b/neovim.rb
index 45e8b4018a..ecf78bf963 100644
--- a/neovim.rb
+++ b/neovim.rb
@@ -12,5 +12,6 @@ class Neovim < Formula
def install
system "make", "PREFIX=#{prefix}", "cmake"
system "make", "PREFIX=#{prefix}"
+ system "make", "PREFIX=#{prefix}", "install"
end
end