From c42c63a8b088ad007ef897b7311cfe047c34a973 Mon Sep 17 00:00:00 2001 From: Adam Weeden Date: Tue, 19 Apr 2022 09:56:16 -0400 Subject: [PATCH] Fix universal app path logic to resolve to absolute (fix #1398) --- src/build/buildNativefierApp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/buildNativefierApp.ts b/src/build/buildNativefierApp.ts index 86a14f7..5950fc8 100644 --- a/src/build/buildNativefierApp.ts +++ b/src/build/buildNativefierApp.ts @@ -315,8 +315,8 @@ export async function buildUniversalApp(options: RawOptions): Promise { let x64Path: string | undefined; let arm64Path: string | undefined; try { - x64Path = await buildNativefierApp(x64Options); - arm64Path = await buildNativefierApp(arm64Options); + x64Path = path.resolve(await buildNativefierApp(x64Options)); + arm64Path = path.resolve(await buildNativefierApp(arm64Options)); const universalAppPath = path .join( x64Path,