We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a082cb commit 64bcd38Copy full SHA for 64bcd38
scripts/install.js
@@ -322,13 +322,16 @@ build all: phony runtime others $stdlib
322
`;
323
var filePath = path.join(jscomp_dir, "release.ninja");
324
fs.writeFileSync(filePath, releaseNinja, "ascii");
325
- let cleanArgs = ["-f", "release.ninja", "-t", "clean"];
+ var cleanArgs = ["-f", "release.ninja", "-t", "clean"];
326
cp.execFileSync(ninja_bin_output, cleanArgs, {
327
cwd: jscomp_dir,
328
stdio: [0, 1, 2],
329
shell: false
330
});
331
- let buildArgs = ["-f", "release.ninja"];
+ var buildArgs = ["-f", "release.ninja"];
332
+ if(process.env.BS_TRAVIS_CI){
333
+ buildArgs.push('--verbose')
334
+ }
335
cp.execFileSync(ninja_bin_output, buildArgs, {
336
337
0 commit comments