electron/spec/fixtures/api/app-path/lib/index.js

11 lines
174 B
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
const { app } = require('electron');
const payload = {
appPath: app.getAppPath()
2020-03-20 20:28:31 +00:00
};
2020-03-20 20:28:31 +00:00
process.stdout.write(JSON.stringify(payload));
process.stdout.end();
2020-03-20 20:28:31 +00:00
process.exit();