mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-18 17:08:09 +01:00
fix(build): rename boolean.
This commit is contained in:
parent
78a96eecd2
commit
be373dfb80
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
needDisplace bool = false
|
overwrite bool = false
|
||||||
Distribution string
|
Distribution string
|
||||||
DistDir *paths.Path
|
DistDir *paths.Path
|
||||||
Root *paths.Path
|
Root *paths.Path
|
||||||
|
@ -32,7 +32,7 @@ func init() {
|
||||||
os := NewOSRelease()
|
os := NewOSRelease()
|
||||||
if os["VERSION_CODENAME"] == "noble" {
|
if os["VERSION_CODENAME"] == "noble" {
|
||||||
Builds = append(Builds, BuildABI3)
|
Builds = append(Builds, BuildABI3)
|
||||||
needDisplace = true
|
overwrite = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue