Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Formula/sing2seq.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Sing2seq < Formula
desc "Transporter used to send sing-box logs to seq"
homepage "https://github.com/moonfruit/sing2seq"
url "https://github.com/moonfruit/sing2seq/archive/refs/tags/v1.2.1.tar.gz"
sha256 "89920c783f9ee9ff5914b72c48ab8e68430f88911bb5a45573ae86e32a1b01e1"
url "https://github.com/moonfruit/sing2seq/archive/refs/tags/v1.3.0.tar.gz"
sha256 "91a1178b81adf1b5c6a089ce86c209f709e135f2ad8b2e98244e6a4b97903cfd"
license "MIT"

bottle do
Expand All @@ -14,7 +14,7 @@
depends_on "go" => :build

def install
system "go", "build", *std_go_args(ldflags: "-s -w -X main.version=#{version}")
system "go", "build", *std_go_args(ldflags: "-s -w -X main.version=#{version}"), "./cmd/sing2seq"
generate_completions_from_executable(bin/"sing2seq", shell_parameter_format: :cobra)
end

Expand Down
Loading