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') ); } }