File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 77 - lerna bootstrap --ignore={demos}
88 - yarn test:unit
99 - lerna run test
10- - node ./tests/bin/run-on-first-ci-job.js " yarn test:integration:build"
11- - node ./tests/bin/run-on-first-ci-job.js " yarn test:integration"
10+ - node ./tests/bin/run-on-first-ci-job.js yarn test:integration:build
11+ - node ./tests/bin/run-on-first-ci-job.js yarn test:integration
1212after_success : " yarn coveralls"
1313cache :
1414 yarn : true
Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ if (ciJobNumber() !== 1) {
77}
88
99// Run the command otherwise.
10- const parts = process . argv [ 2 ] . split ( " " ) ;
10+ const command = process . argv [ 2 ] ;
11+ const args = process . argv . slice ( 3 ) ;
1112
12- const execution = spawn ( parts [ 0 ] , parts . slice ( 1 ) ) ;
13+ const execution = spawn ( command , args ) ;
1314
1415execution . stdout . on ( "data" , data => {
1516 process . stdout . write ( data . toString ( ) ) ;
You can’t perform that action at this time.
0 commit comments