Skip to content

Commit

Permalink
fixed service_job_id relay, and added run_at back.
Browse files Browse the repository at this point in the history
  • Loading branch information
cainus committed Jun 22, 2013
1 parent 8530365 commit 82cf2e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/convertLcovToCoveralls.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var convertLcovToCoveralls = function(input, options, cb){
postJson.service_name = options.service_name;
}
if (options.service_job_id){
postJson.service_name = options.service_job_id;
postJson.service_job_id = options.service_job_id;
}
if (options.repo_token) {
postJson.repo_token = options.repo_token;
Expand Down
2 changes: 1 addition & 1 deletion lib/getOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var getOptions = function(){
options.git = process.env.COVERALLS_SERVICE_JOB_ID;
}

//options.run_at = process.env.COVERALLS_RUN_AT || JSON.stringify(new Date()).slice(1, -1);
options.run_at = process.env.COVERALLS_RUN_AT || JSON.stringify(new Date()).slice(1, -1);
if (process.env.service_name){
options.service_name = service_name;
}
Expand Down

0 comments on commit 82cf2e8

Please sign in to comment.