mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 06:07:55 +00:00
25 lines
516 B
CoffeeScript
25 lines
516 B
CoffeeScript
visuals = require('resin-cli-visuals')
|
|
drivelist = require('drivelist')
|
|
|
|
exports.list =
|
|
signature: 'drives'
|
|
description: 'list available drives'
|
|
help: '''
|
|
Use this command to list all drives that are connected to your machine.
|
|
|
|
Examples:
|
|
$ resin drives
|
|
'''
|
|
permission: 'user'
|
|
action: (params, options, done) ->
|
|
drivelist.list (error, drives) ->
|
|
return done(error) if error?
|
|
|
|
console.log visuals.widgets.table.horizontal drives, [
|
|
'device'
|
|
'description'
|
|
'size'
|
|
]
|
|
|
|
return done()
|