Skip to content

Commit

Permalink
Merge pull request bchr02#17 from bchr02/dev
Browse files Browse the repository at this point in the history
bug fix circular reference
  • Loading branch information
bchr02 committed Jun 3, 2016
2 parents c18b72e + 864a2b3 commit c239d3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var cwd = process.cwd();

var verbose;
var consoleLog = function(x){
return (verbose) ? consoleLog(x) : false;
return (verbose) ? console.log(x) : false;
};

function NodePreGypGithub() {}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-pre-gyp-github",
"version": "1.3.0",
"version": "1.3.1",
"description": "A node-pre-gyp module which provides the ability to publish to GitHub releases.",
"bin": "./bin/node-pre-gyp-github.js",
"main": "index.js",
Expand Down

0 comments on commit c239d3f

Please sign in to comment.