Skip to content

Commit

Permalink
bug fix version release
Browse files Browse the repository at this point in the history
  • Loading branch information
William Crandell committed Sep 28, 2015
1 parent 776103b commit 35b731b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/gistup
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function confirmFiles(files, callback) {
}

function gitAdd(files, callback) {
if (typeof files[0] == 'undefined') return void callback(null);
if (typeof files[0] == 'function') return void callback(null);
if (!files.length) return void callback(null);
var fileList = files.join(' ');
console.log(fileList);
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": "gistup-npc",
"version": "0.1.12",
"version": "0.1.13",
"description": "Initialize a gist from the command-line, optionally creating a repo",
"keywords": [
"gist",
Expand Down

0 comments on commit 35b731b

Please sign in to comment.