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 7
7
- lerna bootstrap --ignore={demos}
8
8
- yarn test:unit
9
9
- 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
12
12
after_success : " yarn coveralls"
13
13
cache :
14
14
yarn : true
Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ if (ciJobNumber() !== 1) {
7
7
}
8
8
9
9
// Run the command otherwise.
10
- const parts = process . argv [ 2 ] . split ( " " ) ;
10
+ const command = process . argv [ 2 ] ;
11
+ const args = process . argv . slice ( 3 ) ;
11
12
12
- const execution = spawn ( parts [ 0 ] , parts . slice ( 1 ) ) ;
13
+ const execution = spawn ( command , args ) ;
13
14
14
15
execution . stdout . on ( "data" , data => {
15
16
process . stdout . write ( data . toString ( ) ) ;
You can’t perform that action at this time.
0 commit comments