mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
module.exports.command = 'doctor'
|
|
|
|
module.exports.describe = 'Diagnose potential issues with your installation.'
|
|
|
|
module.exports.builder = function(yargs) {
|
|
return yargs
|
|
}
|
|
|
|
module.exports.handler = function() {
|
|
return require('../../util/doctor').run()
|
|
}
|