Update shell.js

This commit is contained in:
Namhyeon Go 2020-07-23 19:38:19 +09:00
parent a200c51364
commit fab664d524

View File

@ -31,5 +31,5 @@ exports.run = function(cmd, fork) {
var WSH = CreateObject("WScript.Shell");
var fork = (typeof(fork) !== "undefined") ? fork : true;
var c = "%comspec% /q /c " + cmd;
WSH.Run(cmd, 0, !fork);
WSH.Run(c, 0, !fork);
};