We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 820ab23 commit ced9decCopy full SHA for ced9dec
app/scripts/build-backend.js
@@ -1,6 +1,6 @@
1
'use strict';
2
3
-const { execSync } = require('child_process');
+const { execFileSync } = require('child_process');
4
5
exports.default = async context => {
6
let arch = context.arch;
@@ -15,7 +15,7 @@ exports.default = async context => {
15
osName = 'Windows_NT';
16
}
17
18
- execSync('make backend', {
+ execFileSync('make', ['backend'], {
19
env: {
20
...process.env, // needed otherwise important vars like PATH and GOROOT are not set
21
GOARCH: arch,
0 commit comments