mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-12-22 01:58:54 +00:00
Fix universal app path logic to resolve to absolute (fix #1398)
This commit is contained in:
parent
3a8f66a7b6
commit
c42c63a8b0
@ -315,8 +315,8 @@ export async function buildUniversalApp(options: RawOptions): Promise<string> {
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user