mirror of https://git.tuxpa.in/a/code-server.git
fix: resolve conflicts in build/lib/node.ts
It looks like they added a few more variables and cleaned this file up. I removed the yarn and yarnRc stuff. Hope that doesn't break anything.
This commit is contained in:
parent
40d0c88341
commit
f214235e2d
|
@ -6,21 +6,12 @@
|
|||
import * as path from 'path';
|
||||
|
||||
const root = path.dirname(path.dirname(__dirname));
|
||||
<<<<<<< HEAD
|
||||
const version = process.versions.node;
|
||||
const node = process.platform === 'win32' ? 'node.exe' : 'node';
|
||||
const nodePath = path.join(root, '.build', 'node', `v${version}`, `${process.platform}-${process.arch}`, node);
|
||||
|
||||
=======
|
||||
const yarnrcPath = path.join(root, 'remote', '.yarnrc');
|
||||
const yarnrc = fs.readFileSync(yarnrcPath, 'utf8');
|
||||
const version = /^target\s+"([^"]+)"$/m.exec(yarnrc)![1];
|
||||
|
||||
const platform = process.platform;
|
||||
|
||||
const arch = platform === 'darwin' ? 'x64' : process.arch;
|
||||
|
||||
const node = platform === 'win32' ? 'node.exe' : 'node';
|
||||
const nodePath = path.join(root, '.build', 'node', `v${version}`, `${platform}-${arch}`, node);
|
||||
|
||||
>>>>>>> 89b6e0164fa770333755b11504e19a4232b1a2d4
|
||||
console.log(nodePath);
|
||||
|
|
Loading…
Reference in New Issue