Cargo.toml was moved to root in Lune, so changed the arguments of cargo install

This commit is contained in:
Jack Programs 2023-07-29 10:58:27 -07:00 committed by GitHub
parent 8fd8a3c1df
commit 790b18a1ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,10 +8,10 @@ class Lune < Formula
depends_on "rust" => :build depends_on "rust" => :build
def install def install
system "cargo", "install", "--locked", "--root", prefix, "--path", "./packages/cli" system "cargo", "install", *std_cargo_args
end end
test do test do
system "false" system "false"
end end
end end