-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add --path . to cargo install commands
- Loading branch information
1 parent
b74d969
commit 661c6e9
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ class Catwalk < Formula | |
depends_on "rust" => :build | ||
|
||
def install | ||
Check failure on line 18 in Formula/catwalk.rb GitHub Actions / test-bot (ubuntu-22.04)`brew install --verbose --formula --build-bottle catppuccin/tap/catwalk` failed on Linux!
Check failure on line 18 in Formula/catwalk.rb GitHub Actions / test-bot (macos-13)`brew install --verbose --formula --build-bottle catppuccin/tap/catwalk` failed on macOS Ventura (13)!
|
||
system "cargo", "install" | ||
system "cargo", "install", "--path", "." | ||
generate_completions_from_executable(bin/"catwalk", "completion") | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ class Whiskers < Formula | |
depends_on "rust" => :build | ||
|
||
def install | ||
Check failure on line 17 in Formula/whiskers.rb GitHub Actions / test-bot (macos-13)`brew install --verbose --formula --build-bottle catppuccin/tap/whiskers` failed on macOS Ventura (13)!
|
||
system "cargo", "install" | ||
system "cargo", "install", "--path", "." | ||
end | ||
|
||
test do | ||
|