From e7a81dd2124397ff6c308f30d66d8b994d699746 Mon Sep 17 00:00:00 2001 From: Kirill Isakov Date: Sun, 10 Apr 2022 16:28:28 +0600 Subject: [PATCH] CI: fix creation of Windows installer 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/package/win/installer.nsi b/.ci/package/win/installer.nsi index 90645d07..84d9def1 100644 --- a/.ci/package/win/installer.nsi +++ b/.ci/package/win/installer.nsi @@ -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" -- 2.20.1