Skip to content

Commit

Permalink
[fix] path.existsSync was moved to fs.existsSync
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhbrook committed Jul 7, 2012
1 parent 577749d commit 40c4482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/nodejute/jute/actions/status.js
Expand Up @@ -104,7 +104,7 @@ module.exports = {
}

try {
var coverage = path.existsSync(path.join(baseDir, component, 'lcov-report'));
var coverage = fs.existsSync(path.join(baseDir, component, 'lcov-report'));
ret.current_results[component] = {};
ret.current_results[component].test_results = testResults;
ret.current_results[component].coverage = coverage;
Expand Down

0 comments on commit 40c4482

Please sign in to comment.