Skip to content

Commit 88fba5f

Browse files
committed
Make choices for roll out easier to understand
1 parent 40c0bc1 commit 88fba5f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/cmd/env-vars.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,11 @@ module.exports = class EnvVarsCommand extends CLICommandBase {
192192
const whenQuestion = {
193193
type: 'list',
194194
name: 'when',
195-
message: 'When should the rollout be applied?',
196-
choices: ['immediate', 'connect'],
195+
message: 'When should the rollout be applied to each device?',
196+
choices: [
197+
{ name: 'Immediately', value: 'immediate' },
198+
{ name: 'On next connection', value: 'connect' }
199+
],
197200
default: 'connect',
198201
dataTesting: 'when-prompt'
199202
};

0 commit comments

Comments
 (0)