fix(build): ensure the displace file get cleaned when not needed.
This commit is contained in:
parent
1f3b812cfb
commit
45a6e0bf21
2 changed files with 10 additions and 3 deletions
|
|
@ -110,6 +110,13 @@ func displaceFiles(files []string) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// Clean the debian/displace file
|
||||
func debianDisplaceClean() {
|
||||
if _, err := paths.New("debian/apparmor.d.displace").Create(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func overwriteProfile(path *paths.Path) []string {
|
||||
res := []string{}
|
||||
lines, err := path.ReadFileAsLines()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue