1234567891011121314151617181920212223242526 |
- 'use strict'
- const App = require('./platform')
- const common = require('./common')
- class LinuxApp extends App {
- get originalElectronName () {
- return 'electron'
- }
- get newElectronName () {
- return common.sanitizeAppName(this.executableName)
- }
- create () {
- return this.initialize()
- .then(() => this.renameElectron())
- .then(() => this.copyExtraResources())
- .then(() => this.move())
- }
- }
- module.exports = {
- App: LinuxApp
- }
|