File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ const whoami = new Command("whoami")
134
134
135
135
const login = new Command("login")
136
136
.description(commandDescriptions['login'])
137
- .option(`-sa , --self-hosted`, `Flag for enabling custom endpoint for self hosted instances`)
137
+ .option(`-sh , --self-hosted`, `Flag for enabling custom endpoint for self hosted instances`)
138
138
.configureHelp({
139
139
helpWidth: process.stdout.columns || 80
140
140
})
@@ -282,7 +282,6 @@ const migrate = async () => {
282
282
const endpoint = globalConfig.get('endpoint');
283
283
const cookie = globalConfig.get('cookie');
284
284
285
- log("Old Appwrite login settings were detected, migrating...");
286
285
const id = ID.unique();
287
286
const data = {
288
287
endpoint,
@@ -295,7 +294,6 @@ const migrate = async () => {
295
294
globalConfig.delete('endpoint');
296
295
globalConfig.delete('cookie');
297
296
298
- success(`Account was migrated and it's the current account`);
299
297
}
300
298
module.exports = {
301
299
{% if sdk .test != " true" %}
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ const questionsLogin = [
319
319
{
320
320
type: "list",
321
321
name: "accountId",
322
- message: "Select an account to switch to ",
322
+ message: "Select an account to use ",
323
323
choices() {
324
324
const logins = globalConfig.getLogins();
325
325
const current = globalConfig.getCurrentLogin();
You can’t perform that action at this time.
0 commit comments