From 790b18a1ad1a1c0839f54d93027dab1c7b108bf5 Mon Sep 17 00:00:00 2001 From: Jack Programs <52725440+jackprogramsjp@users.noreply.github.com> Date: Sat, 29 Jul 2023 10:58:27 -0700 Subject: [PATCH] Cargo.toml was moved to root in Lune, so changed the arguments of cargo install --- Formula/lune.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lune.rb b/Formula/lune.rb index dc081c2..2af2f7d 100644 --- a/Formula/lune.rb +++ b/Formula/lune.rb @@ -8,10 +8,10 @@ class Lune < Formula depends_on "rust" => :build def install - system "cargo", "install", "--locked", "--root", prefix, "--path", "./packages/cli" + system "cargo", "install", *std_cargo_args end test do system "false" end -end \ No newline at end of file +end