Navigation Menu

Skip to content

Commit

Permalink
Fix collision of the variable name "path"
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 9, 2012
1 parent 2f23509 commit b572102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/command-line.js
Expand Up @@ -88,8 +88,8 @@ CommandLineInterface.prototype = {
};
exports.CommandLineInterface = CommandLineInterface;

CommandLineInterface.resolve = function(path) {
return path.resolve(process.cwd(), path);
CommandLineInterface.resolve = function(possibleRelativePath) {
return path.resolve(process.cwd(), possibleRelativePath);
};

exports.Domain = CommandLineInterface.Domain = Domain;

0 comments on commit b572102

Please sign in to comment.