1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/app-mobile/tools/clean.js
2020-11-05 16:58:23 +00:00

17 lines
541 B
JavaScript

// We don't make that a gulp task because we might want to run it before
// gulp has been installed.
const fs = require('fs-extra');
async function main() {
const mobileDir = `${__dirname}/..`;
await fs.remove(`${mobileDir}/android/.gradle`);
await fs.remove(`${mobileDir}/android/app/build`);
console.info('To clean the Android build, in some rare cases you might also need to clear the cache in ~/.android and ~/.gradle');
}
main().catch((error) => {
console.error('Could not clean mobile app build', error);
process.exit(1);
});