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')) {