We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40c0bc1 commit 88fba5fCopy full SHA for 88fba5f
src/cmd/env-vars.js
@@ -192,8 +192,11 @@ module.exports = class EnvVarsCommand extends CLICommandBase {
192
const whenQuestion = {
193
type: 'list',
194
name: 'when',
195
- message: 'When should the rollout be applied?',
196
- choices: ['immediate', 'connect'],
+ message: 'When should the rollout be applied to each device?',
+ choices: [
197
+ { name: 'Immediately', value: 'immediate' },
198
+ { name: 'On next connection', value: 'connect' }
199
+ ],
200
default: 'connect',
201
dataTesting: 'when-prompt'
202
};
0 commit comments