From d6a95a77df262af72b1f36cc207c931f5d6b45aa Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 16 Oct 2020 17:29:33 +1100 Subject: [PATCH] patch application and fix potential .asar.asar changes (#163) --- pkg/apply.js | 4 ++-- pkg/remove.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/apply.js b/pkg/apply.js index 3518e1c..9956c07 100644 --- a/pkg/apply.js +++ b/pkg/apply.js @@ -76,8 +76,8 @@ module.exports = async function ({ overwrite_version, friendly_errors } = {}) { await fs.outputFile( bin_path, bin_script - .replace('electron app.asar\n', 'electron app\n') - .replace('electron6 app.asar\n', 'electron6 app\n') + .replace('electron app.asar', 'electron app') + .replace('electron6 app.asar', 'electron6 app') ); } } diff --git a/pkg/remove.js b/pkg/remove.js index 0f982db..5528c3a 100644 --- a/pkg/remove.js +++ b/pkg/remove.js @@ -105,6 +105,7 @@ module.exports = async function ({ bin_script .replace('electron app', 'electron app.asar') .replace('electron6 app', 'electron6 app.asar') + .replace(/(.asar)+/g, '.asar') ); } }