diff --git a/docs/tutorial/application-packaging.md b/docs/tutorial/application-packaging.md index 76439681790a..cb95fd487d40 100644 --- a/docs/tutorial/application-packaging.md +++ b/docs/tutorial/application-packaging.md @@ -131,7 +131,6 @@ work. This adds a little overhead for those APIs. APIs that requires extra unpacking are: * `child_process.execFile` -* `child_process.fork` * `fs.open` * `fs.openSync` * `process.dlopen` - Used by `require` on native modules @@ -143,4 +142,6 @@ archives is generated by guessing, because those files do not exist on the filesystem. So you should not trust the `Stats` object except for getting file size and checking file type. +## Unpacking files in `asar` archive + [asar]: https://github.com/atom/asar diff --git a/spec/api-protocol-spec.coffee b/spec/api-protocol-spec.coffee index 49dd5e326f72..0b6c62c02754 100644 --- a/spec/api-protocol-spec.coffee +++ b/spec/api-protocol-spec.coffee @@ -123,7 +123,6 @@ describe 'protocol module', -> assert.equal response.length, data.length buf = new Buffer(response.length) buf.write(response) - console.log buf, data assert buf.equals(data) protocol.unregisterProtocol 'atom-file-job' done()