diff options
Diffstat (limited to 'deps/npm/lib/owner.js')
-rw-r--r-- | deps/npm/lib/owner.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/deps/npm/lib/owner.js b/deps/npm/lib/owner.js index 3d33a932a..c9adb7922 100644 --- a/deps/npm/lib/owner.js +++ b/deps/npm/lib/owner.js @@ -26,12 +26,9 @@ owner.completion = function (opts, cb) { var byUser, theUser switch (argv[2]) { case "ls": - if (argv.length > 3) return cb() - return mapToRegistry("-/short", npm.config, function (er, uri, auth) { - if (er) return cb(er) - - npm.registry.get(uri, { auth : auth }, cb) - }) + // FIXME: there used to be registry completion here, but it stopped + // making sense somewhere around 50,000 packages on the registry + return cb() case "rm": if (argv.length > 3) { |