electron launcher
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
253 B

4 years ago
  1. const { app } = require('electron')
  2. const path = require('path')
  3. const fse = require('fs-extra')
  4. module.exports = async (event, appId) => {
  5. const appDir = path.resolve(app.getPath('home'), `./s207/apps/${appId}`)
  6. return fse.removeSync(appDir)
  7. }