@@ -52,19 +52,19 @@ if (!is_windows) {
52
52
function createOCamlTar ( ) {
53
53
if ( process . platform === hostPlatform ) {
54
54
require ( "./installUtils.js" ) . install ( ) ;
55
- console . log ( `status in ocaml submodule:` )
55
+ console . log ( `status in ocaml submodule:` ) ;
56
56
cp . execSync ( `git -C ocaml status -uno` , { cwd : root , stdio : [ 0 , 1 , 2 ] } ) ;
57
57
cp . execSync (
58
58
`git -C ocaml archive --format=tar.gz HEAD -o ../vendor/ocaml.tar.gz` ,
59
59
{ cwd : root , stdio : [ 0 , 1 , 2 ] }
60
60
) ;
61
+ console . log ( `status in ninja submodule:` ) ;
62
+ cp . execSync ( `git -C ninja status -uno` , { cwd : root , stdio : [ 0 , 1 , 2 ] } ) ;
63
+ cp . execSync (
64
+ `git -C ninja archive --format=tar.gz HEAD -o ../vendor/ninja.tar.gz` ,
65
+ { cwd : root , stdio : [ 0 , 1 , 2 ] }
66
+ ) ;
61
67
}
62
- console . log ( `status in ninja submodule:` )
63
- cp . execSync ( `git -C ninja status -uno` , { cwd : root , stdio : [ 0 , 1 , 2 ] } ) ;
64
- cp . execSync (
65
- `git -C ninja archive --format=tar.gz HEAD -o ../vendor/ninja.tar.gz` ,
66
- { cwd : root , stdio : [ 0 , 1 , 2 ] }
67
- ) ;
68
68
}
69
69
70
70
createOCamlTar ( ) ;
0 commit comments