-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba126f8
commit 1d7ea8c
Showing
2 changed files
with
49 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated through hack/update-codegen.sh. Don't edit manually. | ||
# Next line is used to identify version of the file. | ||
# event_version:1.15.0 | ||
require "fileutils" | ||
|
||
class EventAT115 < Formula | ||
homepage "https://github.com/knative-extensions/kn-plugin-event" | ||
|
||
v = "knative-v1.15.0" | ||
version v | ||
|
||
if OS.mac? && Hardware::CPU.intel? | ||
url "https://github.com/knative-extensions/kn-plugin-event/releases/download/#{v}/kn-event-darwin-amd64" | ||
sha256 "b6783bc22d7aa99793e0da742b455199afca708711481a1fecb4fa3676410de8" | ||
elsif OS.mac? && Hardware::CPU.arm? | ||
url "https://github.com/knative-extensions/kn-plugin-event/releases/download/#{v}/kn-event-darwin-arm64" | ||
sha256 "118b800288bf5125d9d2c3fc192cdb062e82e7d266b9c045464d590185901e17" | ||
elsif OS.linux? && Hardware::CPU.arm? | ||
url "https://github.com/knative-extensions/kn-plugin-event/releases/download/#{v}/kn-event-linux-arm64" | ||
sha256 "0fc182cf59fda681ff1ea798cd814f3eb26932ac9fa1cb6874f3b630f897484d" | ||
else | ||
url "https://github.com/knative-extensions/kn-plugin-event/releases/download/#{v}/kn-event-linux-amd64" | ||
sha256 "7aee5b8587532a145648d8f0871777f41bee651b026fc029a54e9d764e204188" | ||
end | ||
|
||
def install | ||
if OS.mac? && Hardware::CPU.intel? | ||
FileUtils.mv("kn-event-darwin-amd64", "kn-event") | ||
elsif OS.mac? && Hardware::CPU.arm? | ||
FileUtils.mv("kn-event-darwin-arm64", "kn-event") | ||
elsif OS.linux? && Hardware::CPU.arm? | ||
FileUtils.mv("kn-event-linux-arm64", "kn-event") | ||
else | ||
FileUtils.mv("kn-event-linux-amd64", "kn-event") | ||
end | ||
bin.install "kn-event" | ||
|
||
end | ||
|
||
test do | ||
system "#{bin}/kn-event", "version" | ||
end | ||
end |