From 9c282e50aac4dd9df12e70e4cd12febb9c1772a8 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 21 Dec 2023 20:05:18 -0800 Subject: [PATCH] Missing comma --- Formula/bkl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/bkl.rb b/Formula/bkl.rb index 097958e..f8f864f 100644 --- a/Formula/bkl.rb +++ b/Formula/bkl.rb @@ -12,6 +12,6 @@ class Bkl < Formula def install ENV["CGOENABLED"] = "0" - system "go", "build", "-tags=bkl-#{@@tag}" "-trimpath", "-ldflags=-extldflags=-static", "-o", "#{bin}/", "./..." + system "go", "build", "-tags=bkl-#{@@tag}", "-trimpath", "-ldflags=-extldflags=-static", "-o", "#{bin}/", "./..." end end