Merge pull request #5611 from jviotti/fix/invalid-archive-asar-exec
Override `child_process.execFile` asar patch for `child_process.exec`
This commit is contained in:
commit
844f9e989b
2 changed files with 41 additions and 0 deletions
|
@ -589,6 +589,23 @@
|
|||
return mkdirSync(p, mode)
|
||||
}
|
||||
}
|
||||
|
||||
// Executing a command string containing a path to an asar
|
||||
// archive confuses `child_process.execFile`, which is internally
|
||||
// called by `child_process.{exec,execSync}`, causing
|
||||
// Electron to consider the full command as a single path
|
||||
// to an archive.
|
||||
[ 'exec', 'execSync' ].forEach(function (functionName) {
|
||||
var old = child_process[functionName]
|
||||
child_process[functionName] = function () {
|
||||
var processNoAsarOriginalValue = process.noAsar
|
||||
process.noAsar = true
|
||||
var result = old.apply(this, arguments)
|
||||
process.noAsar = processNoAsarOriginalValue
|
||||
return result
|
||||
}
|
||||
})
|
||||
|
||||
overrideAPI(fs, 'open')
|
||||
overrideAPI(child_process, 'execFile')
|
||||
overrideAPISync(process, 'dlopen', 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue