From b2fc6cc8ed29de96ed837429d491328832970fd4 Mon Sep 17 00:00:00 2001 From: Nek-12 Date: Thu, 27 Aug 2020 18:02:56 +0300 Subject: [PATCH] fixed typo in path to binary --- pkg/apply.js | 2 +- pkg/remove.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/apply.js b/pkg/apply.js index ebe16db..ff58681 100644 --- a/pkg/apply.js +++ b/pkg/apply.js @@ -72,7 +72,7 @@ module.exports = async function ({ overwrite_version } = {}) { ); for (let bin_path of [ `/usr/bin/${__notion.split('/')[2]}`, - `${__notion}${__notion.split('/')[2]}`, + `${__notion}/${__notion.split('/')[2]}`, ]) { const bin_script = await fs.readFile(bin_path, 'utf8'); if (bin_script.includes('app.asar')) { diff --git a/pkg/remove.js b/pkg/remove.js index f635ed2..3c5610a 100644 --- a/pkg/remove.js +++ b/pkg/remove.js @@ -101,7 +101,7 @@ module.exports = async function ({ overwrite_asar, delete_data } = {}) { ); for (let bin_path of [ `/usr/bin/${__notion.split('/')[2]}`, - `${__notion}${__notion.split('/')[2]}`, + `${__notion}/${__notion.split('/')[2]}`, ]) { const bin_script = await fs.readFile(bin_path, 'utf8'); if (!bin_script.includes('app.asar')) {