mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
12 lines
194 B
Go
12 lines
194 B
Go
package installer
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func UpdaterBinaryNameWithoutExtension() string {
|
|
ext := filepath.Ext(updaterBinary)
|
|
return strings.TrimSuffix(updaterBinary, ext)
|
|
}
|