mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Trying to fix Windows 32-bit build
This commit is contained in:
parent
25951e7097
commit
c7ed1b5eae
@ -37,10 +37,10 @@ async function main() {
|
||||
if (isWindows()) exePath += '.cmd';
|
||||
|
||||
if (isWindows()) {
|
||||
console.info(await execCommand(['node', '"' + exePath + '"', '--arch ia32'].join(' ')));
|
||||
console.info(await execCommand(['node', '"' + exePath + '"', '--arch x64'].join(' ')));
|
||||
console.info(await execCommand(['"' + exePath + '"', '--arch ia32'].join(' ')));
|
||||
console.info(await execCommand(['"' + exePath + '"', '--arch x64'].join(' ')));
|
||||
} else {
|
||||
console.info(await execCommand(['node', '"' + exePath + '"'].join(' ')));
|
||||
console.info(await execCommand(['"' + exePath + '"'].join(' ')));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user