1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00

Remove remnants of console and old tx implementation.

This commit is contained in:
Simo Kinnunen 2014-02-21 16:31:22 +09:00
parent df3a29d94c
commit 4381a5ddfe
3 changed files with 0 additions and 273 deletions

View file

@ -380,31 +380,6 @@ program
})
})
program
.command('console')
.description('start console')
.option('-s, --connect-sub <endpoint>'
, 'sub endpoint'
, cliutil.list)
.option('-p, --connect-push <endpoint>'
, 'push endpoint'
, cliutil.list)
.action(function(options) {
if (!options.connectSub) {
this.missingArgument('--connect-sub')
}
if (!options.connectPush) {
this.missingArgument('--connect-push')
}
require('./roles/console')({
endpoints: {
sub: options.connectSub
, push: options.connectPush
}
})
})
program
.command('local [serial..]')
.description('start everything locally')