提交 3359b50c 编写于 作者: J Joao Moreno

use windowsVerbatimArguments

上级 3da69781
......@@ -1720,6 +1720,7 @@ declare module "child_process" {
uid?: number;
gid?: number;
shell?: boolean | string;
windowsVerbatimArguments?: boolean;
}
export function spawn(command: string, args?: string[], options?: SpawnOptions): ChildProcess;
......
......@@ -172,7 +172,8 @@ export class Win32UpdateService extends AbstractUpdateService {
return pfs.writeFile(this.availableUpdate.updateFilePath, 'flag').then(() => {
const child = spawn(this.availableUpdate.packagePath, ['/verysilent', `/update="${this.availableUpdate.updateFilePath}"`, '/nocloseapplications', '/mergetasks=runcode,!desktopicon,!quicklaunchicon'], {
detached: true,
stdio: ['ignore', 'ignore', 'ignore']
stdio: ['ignore', 'ignore', 'ignore'],
windowsVerbatimArguments: true
});
child.once('exit', () => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册