From cb8ebc9e04e3c10572f73cbf52b5a1e674a43758 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 14 Feb 2025 20:39:50 -0600 Subject: [PATCH] ignore building go plugins --- doDebian.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doDebian.go b/doDebian.go index d844090..770542e 100644 --- a/doDebian.go +++ b/doDebian.go @@ -36,6 +36,10 @@ func buildDeb() { continue } + if check.IsGoPlugin() { + continue + } + if argv.Release { cmd = []string{"go-deb", "--release", "--no-gui", "--auto", "--forge", check.GetGoPath(), "--dir", outdir} } else {