2019-07-16 17:23:04 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Thu, 13 Sep 2018 08:56:07 -0700
|
|
|
|
Subject: feat: initialize asar support
|
|
|
|
|
2020-02-24 21:02:04 +00:00
|
|
|
This patch initializes asar support in Node.js.
|
2019-07-16 17:23:04 +00:00
|
|
|
|
|
|
|
diff --git a/lib/internal/bootstrap/pre_execution.js b/lib/internal/bootstrap/pre_execution.js
|
2020-03-03 21:35:05 +00:00
|
|
|
index 1b05d6e30a0ba004ac3c1113da3ad649a6e74dcc..cef4e5086ca8160a7d715915f735963e369068b1 100644
|
2019-07-16 17:23:04 +00:00
|
|
|
--- a/lib/internal/bootstrap/pre_execution.js
|
|
|
|
+++ b/lib/internal/bootstrap/pre_execution.js
|
2020-02-24 21:02:04 +00:00
|
|
|
@@ -67,6 +67,7 @@ function prepareMainThreadExecution(expandArgv1 = false) {
|
|
|
|
assert(!CJSLoader.hasLoadedAnyUserCJSModule);
|
2019-07-16 17:23:04 +00:00
|
|
|
loadPreloadModules();
|
2019-10-14 22:46:10 +00:00
|
|
|
initializeFrozenIntrinsics();
|
2019-07-16 17:23:04 +00:00
|
|
|
+ setupAsarSupport();
|
|
|
|
}
|
|
|
|
|
|
|
|
function patchProcessObject(expandArgv1) {
|
2020-02-24 21:02:04 +00:00
|
|
|
@@ -445,6 +446,10 @@ function loadPreloadModules() {
|
2019-07-16 17:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+function setupAsarSupport() {
|
2020-02-14 11:25:39 +00:00
|
|
|
+ process._linkedBinding('electron_common_asar').initAsarSupport(require);
|
2019-07-16 17:23:04 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
module.exports = {
|
|
|
|
patchProcessObject,
|
|
|
|
setupCoverageHooks,
|