Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6f5edb3

Browse files
committed
fix for travis
1 parentac666bb commit6f5edb3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

‎.travis.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ script:
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
1212
after_success:"yarn coveralls"
1313
cache:
1414
yarn:true

‎tests/bin/run-on-first-ci-job.js‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ if (ciJobNumber() !== 1) {
77
}
88

99
// Run the command otherwise.
10-
constparts=process.argv[2].split(" ");
10+
constcommand=process.argv[2];
11+
constargs=process.argv.slice(3);
1112

12-
constexecution=spawn(parts[0],parts.slice(1));
13+
constexecution=spawn(command,args);
1314

1415
execution.stdout.on("data",data=>{
1516
process.stdout.write(data.toString());

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp