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

Tools: Clean up after spellfix build

This commit is contained in:
Laurent Cozic 2020-09-21 12:35:20 +01:00
parent 9610b7e6bd
commit aa22af443c
2 changed files with 7 additions and 2 deletions

4
.gitignore vendored
View File

@ -50,8 +50,8 @@ joplin-webclipper-source.zip
Tools/commit_hook.txt Tools/commit_hook.txt
.vscode/* .vscode/*
*.map *.map
ReactNativeClient/lib/sql-extensions/ ReactNativeClient/lib/sql-extensions/spellfix.so
!ReactNativeClient/lib/sql-extensions/spellfix.dll ReactNativeClient/lib/sql-extensions/spellfix.dylib
# AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD # AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD
CliClient/app/LinkSelector.js CliClient/app/LinkSelector.js

View File

@ -45,6 +45,11 @@ async function main() {
} catch (e) { } catch (e) {
console.warn(e); console.warn(e);
} }
await fs.remove(`${dest}/sqlite.tar.gz`);
await fs.remove(`${dest}/amalgamation.tar.gz`);
await fs.remove(`${dest}/sqlite`);
await fs.remove(`${dest}/sqlite-autoconf-3330000`);
} }
module.exports = main; module.exports = main;