diff --git a/build/actions/device.js b/build/actions/device.js index e1ff2fbe..89a41c56 100644 --- a/build/actions/device.js +++ b/build/actions/device.js @@ -112,16 +112,6 @@ } }; - exports.supported = { - signature: 'devices supported', - description: 'list all supported devices', - help: 'Use this command to get the list of all supported devices\n\nExamples:\n\n $ resin devices supported', - permission: 'user', - action: function(params, options, done) { - return resin.models.device.getSupportedDeviceTypes().each(console.log).nodeify(done); - } - }; - exports.await = { signature: 'device await ', description: 'await for a device to become online', diff --git a/build/app.js b/build/app.js index 2c424ce7..c91327e1 100644 --- a/build/app.js +++ b/build/app.js @@ -60,8 +60,6 @@ capitano.command(actions.device.list); - capitano.command(actions.device.supported); - capitano.command(actions.device.rename); capitano.command(actions.device.init); diff --git a/lib/actions/device.coffee b/lib/actions/device.coffee index a55b89bd..f27655dd 100644 --- a/lib/actions/device.coffee +++ b/lib/actions/device.coffee @@ -151,20 +151,6 @@ exports.rename = .then(_.partial(resin.models.device.rename, params.uuid)) .nodeify(done) -exports.supported = - signature: 'devices supported' - description: 'list all supported devices' - help: ''' - Use this command to get the list of all supported devices - - Examples: - - $ resin devices supported - ''' - permission: 'user' - action: (params, options, done) -> - resin.models.device.getSupportedDeviceTypes().each(console.log).nodeify(done) - exports.await = signature: 'device await ' description: 'await for a device to become online' diff --git a/lib/app.coffee b/lib/app.coffee index 1ad7bec2..e6d49808 100644 --- a/lib/app.coffee +++ b/lib/app.coffee @@ -42,7 +42,6 @@ capitano.command(actions.app.info) # ---------- Device Module ---------- capitano.command(actions.device.list) -capitano.command(actions.device.supported) capitano.command(actions.device.rename) capitano.command(actions.device.init) capitano.command(actions.device.await)