From be373dfb80c2c6a448467f465727440a9027fcc8 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Sun, 10 Mar 2024 14:47:13 +0000 Subject: [PATCH] fix(build): rename boolean. --- pkg/prebuild/prebuild.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/prebuild/prebuild.go b/pkg/prebuild/prebuild.go index 0b4fea23..e87284f5 100644 --- a/pkg/prebuild/prebuild.go +++ b/pkg/prebuild/prebuild.go @@ -14,7 +14,7 @@ import ( ) var ( - needDisplace bool = false + overwrite bool = false Distribution string DistDir *paths.Path Root *paths.Path @@ -32,7 +32,7 @@ func init() { os := NewOSRelease() if os["VERSION_CODENAME"] == "noble" { Builds = append(Builds, BuildABI3) - needDisplace = true + overwrite = true } } }