CI: fix creation of Windows installer
authorKirill Isakov <bootctl@gmail.com>
Sun, 10 Apr 2022 10:28:28 +0000 (16:28 +0600)
committerKirill Isakov <bootctl@gmail.com>
Sun, 10 Apr 2022 10:28:28 +0000 (16:28 +0600)
After moving to meson, we've been using separate build directories
for each test flavor instead of running `git clean -dfx`, and the .nsi
used to create a Windows installer for the development release wasn't
updated to reflect this.

.ci/package/win/installer.nsi

index 90645d0..84d9def 100644 (file)
@@ -18,8 +18,8 @@ RequestExecutionLevel admin
 Section "Tinc"
   SetOutPath $INSTDIR
 
-  File ..\..\..\build\src\tinc.exe
-  File ..\..\..\build\src\tincd.exe
+  File ..\..\..\default\src\tinc.exe
+  File ..\..\..\default\src\tincd.exe
   File ..\..\..\wintap.exe
 
   CreateDirectory "$SMPROGRAMS\Tinc"