1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Fix clipper release script

This commit is contained in:
Laurent Cozic 2020-03-02 18:03:49 +00:00
parent 96cf42fb06
commit 0910dc4e54

View File

@ -14,9 +14,7 @@ async function copyToDist(distDir) {
await copyDir(clipperDir, 'content_scripts', distDir);
await copyDir(clipperDir, 'icons', distDir);
await fs.copy(`${clipperDir}/background.js`, `${distDir}/background.js`);
await fs.copy(`${clipperDir}/main.js`, `${distDir}/main.js`);
await fs.copy(`${clipperDir}/manifest.json`, `${distDir}/manifest.json`);
await fs.remove(`${distDir}/popup/build/manifest.json`);
}