This commit is contained in:
nightwing 2015-05-01 17:36:36 +04:00
parent 0160048fe4
commit e150dc8a5a
2 changed files with 5 additions and 3 deletions

View File

@ -21,9 +21,9 @@ define(function(require, exports, module) {
// var emit = plugin.getEmitter();
var counter = 0;
var SOCKET = process.platform == "win32"
? "\\\\.\\pipe\\"+ process.env.HOME +"\\.c9\\bridge.socket"
: process.env.HOME + "/.c9/bridge.socket";
var SOCKET = c9.platform == "win32"
? "\\\\.\\pipe\\"+ c9.home +"\\.c9\\bridge.socket"
: c9.home + "/.c9/bridge.socket";
/***** Methods *****/

View File

@ -21,6 +21,8 @@ require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"], function (arc
"plugins/c9.core/ext",
"plugins/c9.core/http-xhr",
"plugins/c9.core/util",
"plugins/c9.ide.ui/lib_apf",
"plugins/c9.ide.ui/ui",
"plugins/c9.core/settings",
"plugins/c9.vfs.client/vfs_client",
"plugins/c9.vfs.client/endpoint",