From b9aa0586634f0bae2826ef28c3c3f2d1f954d0ef Mon Sep 17 00:00:00 2001 From: Vladimir Borisov Date: Thu, 17 Oct 2024 14:17:18 +0300 Subject: [PATCH] Fix target binary --- setup/Stremio.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/Stremio.iss b/setup/Stremio.iss index 249dee7..4154fb5 100644 --- a/setup/Stremio.iss +++ b/setup/Stremio.iss @@ -3,7 +3,7 @@ #define MyAppName "Stremio" #define MyAppExeName "stremio-shell-ng.exe" -#define MyAppExeLocation SourcePath + "..\target\release\" + MyAppExeName +#define MyAppExeLocation SourcePath + "..\target\i686-pc-windows-msvc\release\" + MyAppExeName #define MyAppVersion() GetVersionComponents(MyAppExeLocation, Local[0], Local[1], Local[2], Local[3]), \ Str(Local[0]) + "." + Str(Local[1]) + "." + Str(Local[2])