mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-27 13:28:09 +01:00
build: disable dummy upstream profile in favor of ours.
This commit is contained in:
parent
078b0de752
commit
61939a3bf8
2 changed files with 5 additions and 3 deletions
|
@ -13,6 +13,7 @@ flatpak
|
|||
foliate
|
||||
loupe
|
||||
msedge
|
||||
mullvad
|
||||
nautilus
|
||||
opera
|
||||
plasmashell
|
||||
|
|
|
@ -49,9 +49,10 @@ func (p Overwrite) Apply() ([]string, error) {
|
|||
if !dest.Exist() && p.OneFile {
|
||||
continue
|
||||
}
|
||||
if err := origin.Rename(dest); err != nil {
|
||||
|
||||
return res, err
|
||||
if origin.Exist() {
|
||||
if err := origin.Rename(dest); err != nil {
|
||||
return res, err
|
||||
}
|
||||
}
|
||||
originRel, err := origin.RelFrom(dest)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue