Merge pull request #5 from jmarca/bug/declare_db
declare 'db' var in both functions
This commit is contained in:
commit
cfe5021c54
|
@ -41,7 +41,7 @@ module.exports = function(grunt) {
|
||||||
});
|
});
|
||||||
|
|
||||||
grunt.registerMultiTask("rmcouchdb", "Delete a Couch Database", function() {
|
grunt.registerMultiTask("rmcouchdb", "Delete a Couch Database", function() {
|
||||||
var done, parts, nano, dbname, _this;
|
var done, parts, nano, dbname, _this, db;
|
||||||
_this = this;
|
_this = this;
|
||||||
done = this.async();
|
done = this.async();
|
||||||
db = genDB(this.data.db);
|
db = genDB(this.data.db);
|
||||||
|
@ -75,7 +75,7 @@ module.exports = function(grunt) {
|
||||||
});
|
});
|
||||||
|
|
||||||
grunt.registerMultiTask("mkcouchdb", "Make a Couch Database", function() {
|
grunt.registerMultiTask("mkcouchdb", "Make a Couch Database", function() {
|
||||||
var done, parts, nano, dbname, _this;
|
var done, parts, nano, dbname, _this, db;
|
||||||
_this = this;
|
_this = this;
|
||||||
|
|
||||||
done = this.async();
|
done = this.async();
|
||||||
|
|
Loading…
Reference in New Issue