allow multiple filters to instances and packages

This commit is contained in:
Dave Eddy 2015-08-26 14:03:22 -04:00
parent 0cfa83dedc
commit 532cead66f
2 changed files with 0 additions and 6 deletions

View File

@ -43,9 +43,6 @@ function do_instances(subcmd, opts, args, callback) {
if (opts.help) {
this.do_help('help', {}, [subcmd], callback);
return;
} else if (args.length > 1) {
callback(new Error('too many args: ' + args));
return;
}
var columns = opts.o.trim().split(',');

View File

@ -12,9 +12,6 @@ function do_packages (subcmd, opts, args, callback) {
if (opts.help) {
this.do_help('help', {}, [subcmd], callback);
return;
} else if (args.length > 1) {
callback(new Error('too many args: ' + args));
return;
}
var columns = 'shortid,name,default,memory,disk'.split(',');