Extract ripgrep when inside binary
This commit is contained in:
@ -1,8 +1,17 @@
|
||||
/* global require, global, process, __dirname */
|
||||
if (!global.NBIN_LOADED) {
|
||||
try {
|
||||
const nbin = require("nbin");
|
||||
nbin.shimNativeFs("{{ROOT_PATH}}");
|
||||
global.NBIN_LOADED = true;
|
||||
|
||||
const path = require("path");
|
||||
const rg = require("vscode-ripgrep");
|
||||
rg.binaryRgPath = rg.rgPath;
|
||||
rg.rgPath = path.join(
|
||||
require("os").tmpdir(),
|
||||
`code-server/${path.basename(rg.binaryRgPath)}`,
|
||||
);
|
||||
} catch (error) {
|
||||
// Not in the binary.
|
||||
}
|
||||
|
Reference in New Issue
Block a user