mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
AWS Plugin: Don't error when no files to load
This commit is contained in:
parent
fffd0ee9e1
commit
d38b42f7c7
@ -59,8 +59,8 @@ Command.prototype.subCommands["s3-load"] = function() {
|
||||
bucket = this.params[2],
|
||||
filepaths = this.params.slice(3);
|
||||
// Check parameters
|
||||
if(!region || !bucket || filepaths.length < 1) {
|
||||
throw "Missing parameters";
|
||||
if(!region || !bucket) {
|
||||
self.callback("Missing parameters");
|
||||
}
|
||||
async.eachLimit(
|
||||
filepaths,
|
||||
|
Loading…
Reference in New Issue
Block a user