redo: fix audit

redo:
  * Use `system "./redo", "install"` instead of `system "./redo install"`
This commit is contained in:
Miguel Araújo 2017-02-12 08:36:25 -03:00 committed by Mike McQuaid
parent 2ff5f4fa4b
commit ed805b3b44

View file

@ -18,7 +18,7 @@ class Redo < Formula
def install
ENV["PREFIX"] = prefix
system "./redo install"
system "./redo", "install"
rm share/"doc/redo/README.md" # lets not have two copies
man1.install resource("docs")
end