From a79eaf1900780d92c9e20621bd175120fe5bc8f3 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Mon, 27 Nov 2023 15:24:05 -0800 Subject: [PATCH] fix build command --- Formula/b/bkl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/b/bkl.rb b/Formula/b/bkl.rb index 922950e..9c78f5b 100644 --- a/Formula/b/bkl.rb +++ b/Formula/b/bkl.rb @@ -10,6 +10,6 @@ class Bkl < Formula def install ENV["CGOENABLED"] = "0" - system "go", "build", "-trimpath", *std_go_args(ldflags: "-extldflags=-static") + system "go", "build", "-trimpath", "-ldflags=-extldflags=-static", "-o", "#{bin}/", "./..." end end