File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ exports.checkEnvCompiler = checkEnvCompiler;
32
32
*/
33
33
function ensureOCamlExistsSync ( ) {
34
34
if ( ! fs . existsSync ( ocamlVersionFilePath ) ) {
35
- cp . execSync ( `tar xzvf ../vendor/ocaml.tar.gz` , {
35
+ console . log ( "Extracting OCaml sources..." ) ;
36
+ cp . execSync ( `tar xzf ../vendor/ocaml.tar.gz` , {
36
37
cwd : ocamlSrcDir ,
37
38
stdio : [ 0 , 1 , 2 ] ,
38
39
} ) ;
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ function provideNinja() {
47
47
console . log ( `building ninja` ) ;
48
48
ensureExists ( ninja_source_dir ) ;
49
49
if ( fs . existsSync ( path . join ( root_dir , "vendor" , "ninja.tar.gz" ) ) ) {
50
- child_process . execSync ( `tar xzvf ../ninja.tar.gz` , {
50
+ console . log ( "Extracting ninja sources..." ) ;
51
+ child_process . execSync ( `tar xzf ../ninja.tar.gz` , {
51
52
cwd : ninja_source_dir ,
52
53
stdio : [ 0 , 1 , 2 ] ,
53
54
} ) ;
You can’t perform that action at this time.
0 commit comments