fix: remove now unused variable.

This commit is contained in:
Alexandre Pujol 2025-04-06 00:18:01 +02:00
parent f12f684eb1
commit 99f5ed5901
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC

View file

@ -5,16 +5,11 @@
package builder package builder
import ( import (
"regexp"
"strings" "strings"
"github.com/roddhjav/apparmor.d/pkg/prebuild" "github.com/roddhjav/apparmor.d/pkg/prebuild"
) )
var (
regProfile = regexp.MustCompile(`profile ([^ ]+)`)
)
type ReAttach struct { type ReAttach struct {
prebuild.Base prebuild.Base
} }