aboutsummaryrefslogtreecommitdiffstats
path: root/msi-example/exampletun.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'msi-example/exampletun.wxs')
-rw-r--r--msi-example/exampletun.wxs6
1 files changed, 4 insertions, 2 deletions
diff --git a/msi-example/exampletun.wxs b/msi-example/exampletun.wxs
index d5faf52..2dab6a0 100644
--- a/msi-example/exampletun.wxs
+++ b/msi-example/exampletun.wxs
@@ -5,9 +5,11 @@
Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
-->
<?if $(var.EXAMPLETUN_PLATFORM) = "amd64"?>
- <?define UpgradeCode = "{{{FIXED 64BIT UUID}}}"?>
+ <?define UpgradeCode = "{{{FIXED AMD64 UUID}}}"?>
+<?elseif $(var.EXAMPLETUN_PLATFORM) = "arm64"?>
+ <?define UpgradeCode = "{{{FIXED ARM64 UUID}}}"?>
<?elseif $(var.EXAMPLETUN_PLATFORM) = "x86"?>
- <?define UpgradeCode = "{{{FIXED 32BIT UUID}}}"?>
+ <?define UpgradeCode = "{{{FIXED X86 UUID}}}"?>
<?else?>
<?error Unknown platform ?>
<?endif?>