-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbin.js
executable file
·54 lines (46 loc) · 1.32 KB
/
bin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env node
"use strict";
const child_process = require('child_process')
const path = require('path')
const fs = require('fs')
let arch = process.arch
let platform = process.platform
if (arch === "ia32") {
arch = "x86";
}
if (platform === "win32") {
platform = "win";
}
const filename = 'graphql-to-reason-' + platform + '-' + arch + '.exe'
const exe = path.join(__dirname, 'bin', filename)
const supported = fs.existsSync(exe)
if (!supported) {
console.error("graphql-to-reason does not support this platform :(");
console.error("");
console.error(
"graphql-to-reason comes prepacked as built binaries to avoid large"
);
console.error("dependencies at build-time.");
console.error("");
console.error(
"If you want graphql-to-reason to support this platform natively,"
);
console.error("please open an issue at our repository, linked above. Please");
console.error("specify that you are on the " + platform + " platform,");
console.error("on the " + arch + " architecture.");
}
const delegate_args = process.argv.slice(2)
try {
child_process.execFileSync(exe, delegate_args, { stdio: "inherit" });
} catch (e) {
console.error(
"Error happened when running command",
exe,
"with args",
delegate_args
);
console.error("");
console.error(e);
console.error("");
process.exit(2);
}