mirror of
https://github.com/owenlejeune/AirHockey.git
synced 2026-02-18 18:16:50 -05:00
Electron desktop client added
This commit is contained in:
10
Electron Client/node_modules/electron/index.js
generated
vendored
Normal file
10
Electron Client/node_modules/electron/index.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
var fs = require('fs')
|
||||
var path = require('path')
|
||||
|
||||
var pathFile = path.join(__dirname, 'path.txt')
|
||||
|
||||
if (fs.existsSync(pathFile)) {
|
||||
module.exports = path.join(__dirname, fs.readFileSync(pathFile, 'utf-8'))
|
||||
} else {
|
||||
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again')
|
||||
}
|
||||
Reference in New Issue
Block a user