mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-12-22 18:18:55 +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 x64Path: string | undefined;
|
||||||
let arm64Path: string | undefined;
|
let arm64Path: string | undefined;
|
||||||
try {
|
try {
|
||||||
x64Path = await buildNativefierApp(x64Options);
|
x64Path = path.resolve(await buildNativefierApp(x64Options));
|
||||||
arm64Path = await buildNativefierApp(arm64Options);
|
arm64Path = path.resolve(await buildNativefierApp(arm64Options));
|
||||||
const universalAppPath = path
|
const universalAppPath = path
|
||||||
.join(
|
.join(
|
||||||
x64Path,
|
x64Path,
|
||||||
|
Loading…
Reference in New Issue
Block a user