fix(build): rename boolean.

This commit is contained in:
Alexandre Pujol 2024-03-10 14:47:13 +00:00
parent 78a96eecd2
commit be373dfb80
Failed to generate hash of commit

View file

@ -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
} }
} }
} }