Skip to content

Commit

Permalink
Fix runtime error due to trailing comma
Browse files Browse the repository at this point in the history
Closes #132.
  • Loading branch information
MiguelCastillo authored and drublic committed Jun 27, 2015
1 parent f2a7ef7 commit 5a6dc5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* Added declaration for undeclared "vars" variable
* Fix runtime error due to trailing comma (#132)
* Add declaration for undeclared "vars" variable

### 0.13.0 - 2015-06-19
* Add Github Enterprise Option
Expand Down
2 changes: 1 addition & 1 deletion tasks/grunt-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function(grunt){
function setup(file, type){
var pkg = grunt.file.readJSON(file);
var newVersion = pkg.version;
var files,
var files;
var vars;

if (options.bump) {
Expand Down

0 comments on commit 5a6dc5d

Please sign in to comment.