mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 14:59:16 +02:00
Update electron to latest (#850)
This commit is contained in:
@@ -7,16 +7,9 @@ var fs = require("fs");
|
||||
|
||||
var greenworks;
|
||||
|
||||
if (process.platform == "darwin") {
|
||||
if (process.arch == "x64") greenworks = require("./lib/greenworks-osx64");
|
||||
else if (process.arch == "ia32") greenworks = require("./lib/greenworks-osx32");
|
||||
} else if (process.platform == "win32") {
|
||||
if (process.arch == "x64") greenworks = require("./lib/greenworks-win64");
|
||||
else if (process.arch == "ia32") greenworks = require("./lib/greenworks-win32");
|
||||
} else if (process.platform == "linux") {
|
||||
if (process.arch == "x64") greenworks = require("./lib/greenworks-linux64");
|
||||
else if (process.arch == "ia32") greenworks = require("./lib/greenworks-linux32");
|
||||
}
|
||||
if (process.platform === "darwin") greenworks = require("./lib/greenworks-osx64");
|
||||
else if (process.platform === "win32") greenworks = require("./lib/greenworks-win64");
|
||||
else if (process.platform === "linux") greenworks = require("./lib/greenworks-linux64");
|
||||
|
||||
function error_process(err, error_callback) {
|
||||
if (err && error_callback) error_callback(err);
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user