Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit 7ad7d8d

Browse files
author
Thiago Saife Rodrigues
committed
BREAKING CHANGE(int 728): adding region flag to login
- Updated the README file - Added aid to login region
1 parent 62bee8e commit 7ad7d8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/get-questions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ const getOptions = (subCommand, argv = {}, api = {}) => {
132132
{
133133
type: 'input',
134134
name: 'region',
135-
message: 'Enter your user\'s region:',
135+
message: 'Enter your user\'s region (us, eu or cn):',
136136
validate: function (value) {
137137
const flagList = ['us', 'cn', 'eu']
138138
if (flagList.indexOf(value) > -1) {
139139
return true
140140
}
141141

142-
return 'Please enter a valid region: us, cn or eu'
142+
return 'Please enter a valid region: us, eu or cn'
143143
}
144144
}
145145
]

0 commit comments

Comments
 (0)