Rename ATOM_SHELL_ASAR to ELECTRON_ASAR

This commit is contained in:
Kevin Sawicki 2016-04-08 08:53:58 -07:00
Родитель 066092abb6
Коммит 732697a8a2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,10 +1,10 @@
;(function () {
return function (process, require, asarSource) {
// Make asar.coffee accessible via "require".
process.binding('natives').ATOM_SHELL_ASAR = asarSource
process.binding('natives').ELECTRON_ASAR = asarSource
// Monkey-patch the fs module.
require('ATOM_SHELL_ASAR').wrapFsWithAsar(require('fs'))
require('ELECTRON_ASAR').wrapFsWithAsar(require('fs'))
// Make graceful-fs work with asar.
var source = process.binding('natives')
@ -13,7 +13,7 @@
var nativeModule = new process.NativeModule('original-fs')
nativeModule.cache()
nativeModule.compile()
var asar = require('ATOM_SHELL_ASAR')
var asar = require('ELECTRON_ASAR')
asar.wrapFsWithAsar(nativeModule.exports)
module.exports = nativeModule.exports`
}