Skip to content

Commit

Permalink
run.ouput, not just the run object
Browse files Browse the repository at this point in the history
  • Loading branch information
ebensing committed Jul 16, 2013
1 parent 34ac3da commit bb8cb05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -34,7 +34,7 @@ exports.buildGraphs = function (runs, job, repo_loc, callback) {
var val = chart.config.values[x];
var n = {};
n.name = val.taskTitle + "-" + val.field;
n.val = run[val.taskTitle][val.field];
n.val = run.output[val.taskTitle][val.field];
o[x] = n;
}
o.x = run.lastCommit.substr(run.lastCommit.length - 6);
Expand Down

0 comments on commit bb8cb05

Please sign in to comment.