aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/versions.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-02-08 16:16:15 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2021-02-18 22:17:01 +0100
commit4bacf4a37c8ed4091c3201835a0e3db919a6464a (patch)
treeb91f462e47bd4f967ac505571d33ae4b4ba960aa /updater/versions.go
parenttunnel: retry wintun creation a few times at early boot (diff)
downloadwireguard-windows-4bacf4a37c8ed4091c3201835a0e3db919a6464a.tar.xz
wireguard-windows-4bacf4a37c8ed4091c3201835a0e3db919a6464a.zip
build: port to arm64
We build Go from modified-source with a bootstrap version, rather than shipping so many patches in this repo. This commit also removes the previous WOW hacks, and goes back to strictly forbidding WOW. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--updater/versions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/versions.go b/updater/versions.go
index a6671b12..5b42a748 100644
--- a/updater/versions.go
+++ b/updater/versions.go
@@ -54,7 +54,7 @@ func versionNewerThanUs(candidate string) (bool, error) {
}
func findCandidate(candidates fileList) (*UpdateFound, error) {
- prefix := fmt.Sprintf(msiArchPrefix, version.NativeArch())
+ prefix := fmt.Sprintf(msiArchPrefix, version.Arch())
suffix := msiSuffix
for name, hash := range candidates {
if strings.HasPrefix(name, prefix) && strings.HasSuffix(name, suffix) {