mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 14:53:24 +02:00
Automatically use prebuild resources if available.
This commit is contained in:
@@ -601,8 +601,6 @@ program
|
||||
.option('--user-profile-url <url>'
|
||||
, 'URL to external user profile page'
|
||||
, String)
|
||||
.option('-d, --disable-watch'
|
||||
, 'disable watching resources')
|
||||
.action(function(options) {
|
||||
if (!options.secret) {
|
||||
this.missingArgument('--secret')
|
||||
@@ -621,7 +619,6 @@ program
|
||||
, authUrl: options.authUrl
|
||||
, websocketUrl: options.websocketUrl
|
||||
, userProfileUrl: options.userProfileUrl
|
||||
, disableWatch: options.disableWatch
|
||||
})
|
||||
})
|
||||
|
||||
@@ -862,8 +859,6 @@ program
|
||||
, 'provider name (or os.hostname())'
|
||||
, String
|
||||
, os.hostname())
|
||||
.option('-d, --disable-watch'
|
||||
, 'disable watching resources')
|
||||
.option('-t, --group-timeout <seconds>'
|
||||
, 'group timeout'
|
||||
, Number
|
||||
@@ -975,9 +970,6 @@ program
|
||||
)
|
||||
].concat((function() {
|
||||
var extra = []
|
||||
if (options.disableWatch) {
|
||||
extra.push('--disable-watch')
|
||||
}
|
||||
if (options.userProfileUrl) {
|
||||
extra.push('--user-profile-url', options.userProfileUrl)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user