🔧 Hide subprocess window

This commit is contained in:
Felix Rieseberg 2017-12-01 17:18:37 -08:00
parent 7c8acb5ea8
commit c5abe96b39

View file

@ -34,6 +34,8 @@ var spawnUpdate = function (args, detached, callback) {
} else if (!spawnedProcess) {
spawnedProcess = spawn(updateExe, args, {
detached: detached
detached: detached,
windowsHide: true
})
spawnedArgs = args || []
}