mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 08:52:16 +01:00
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
try {
|
|
const nbin = require("nbin");
|
|
const path = require("path");
|
|
const rootPath = path.resolve(__dirname, "../../..");
|
|
console.log("Shimming", rootPath);
|
|
nbin.shimNativeFs(rootPath);
|
|
} catch (error) {
|
|
console.log("Not in the binary");
|
|
}
|
|
|
|
require("../../bootstrap-amd").load("vs/server/cli");
|