File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1822,6 +1822,10 @@ function main() {
1822
1822
console . log ( `please run "./scripts/ninja.js config" first` ) ;
1823
1823
process . exit ( 2 ) ;
1824
1824
}
1825
+ cp . execSync ( `node ${ __filename } config` , {
1826
+ cwd : __dirname ,
1827
+ stdio : [ 0 , 1 , 2 ] ,
1828
+ } ) ;
1825
1829
break ;
1826
1830
case "clean" :
1827
1831
try {
@@ -1832,7 +1836,7 @@ function main() {
1832
1836
} ) ;
1833
1837
} catch ( e ) { }
1834
1838
cp . execSync (
1835
- `git clean -dfx jscomp ${ process . platform } lib && rm -rf lib/js/*.js && rm -rf lib/es6/*.js && rm -rf jscomp/napkin/*.ml* ` ,
1839
+ `git clean -dfx jscomp ${ process . platform } lib && rm -rf lib/js/*.js && rm -rf lib/es6/*.js` ,
1836
1840
{
1837
1841
encoding : "utf8" ,
1838
1842
cwd : path . join ( __dirname , ".." ) ,
@@ -1860,10 +1864,6 @@ function main() {
1860
1864
cwd : __dirname ,
1861
1865
stdio : [ 0 , 1 , 2 ] ,
1862
1866
} ) ;
1863
- cp . execSync ( `node ${ __filename } config` , {
1864
- cwd : __dirname ,
1865
- stdio : [ 0 , 1 , 2 ] ,
1866
- } ) ;
1867
1867
break ;
1868
1868
case "docs" :
1869
1869
console . log ( `building docs` ) ;
You can’t perform that action at this time.
0 commit comments