declare 'db' var in both functions
modified: tasks/couchapp.js added 'db' to the var list in grunt.registerMultiTask("rmcouchdb",...) and grunt.registerMultiTask("mkcouchdb",..). Also, Emacs got rid of some white space. Sorry about that bit of extraneous patching.
This commit is contained in:
parent
d0f8fb3d21
commit
ec656e9c65
|
@ -51,7 +51,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);
|
||||||
|
@ -84,7 +84,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