You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Trying to fix Windows 32-bit build
This commit is contained in:
@ -37,10 +37,10 @@ async function main() {
|
|||||||
if (isWindows()) exePath += '.cmd';
|
if (isWindows()) exePath += '.cmd';
|
||||||
|
|
||||||
if (isWindows()) {
|
if (isWindows()) {
|
||||||
console.info(await execCommand(['node', '"' + exePath + '"', '--arch ia32'].join(' ')));
|
console.info(await execCommand(['"' + exePath + '"', '--arch ia32'].join(' ')));
|
||||||
console.info(await execCommand(['node', '"' + exePath + '"', '--arch x64'].join(' ')));
|
console.info(await execCommand(['"' + exePath + '"', '--arch x64'].join(' ')));
|
||||||
} else {
|
} else {
|
||||||
console.info(await execCommand(['node', '"' + exePath + '"'].join(' ')));
|
console.info(await execCommand(['"' + exePath + '"'].join(' ')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user