build: build tasks: dev -> hotfix.

This commit is contained in:
Alexandre Pujol 2024-10-08 23:44:13 +01:00
parent 630e785787
commit 94703681d9
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 8 additions and 8 deletions

View file

@ -1,36 +0,0 @@
// apparmor.d - Full set of apparmor profiles
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
// SPDX-License-Identifier: GPL-2.0-only
package builder
import (
"github.com/roddhjav/apparmor.d/pkg/prebuild"
"github.com/roddhjav/apparmor.d/pkg/util"
)
var (
regDev = util.ToRegexRepl([]string{
`Cx`, `cx`,
`PUx`, `pux`,
`Px`, `px`,
`Ux`, `ux`,
})
)
type Dev struct {
prebuild.Base
}
func init() {
RegisterBuilder(&Dev{
Base: prebuild.Base{
Keyword: "dev",
Msg: "Apply test development changes",
},
})
}
func (b Dev) Apply(opt *Option, profile string) (string, error) {
return regDev.Replace(profile), nil
}