We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb5243 commit 8e3f858Copy full SHA for 8e3f858
1 file changed
packages/commands/src/commands/auth/login.ts
@@ -123,10 +123,7 @@ export default defineCommand({
123
accessKeyId: flags.accessKeyId!,
124
accessKeySecret: flags.accessKeySecret!,
125
});
126
- console.log(resp);
127
- process.stderr.write("Done\n");
128
- const accessToken =
129
- typeof resp.Data?.AccessToken === "string" ? resp.Data.AccessToken : undefined;
+ const accessToken = resp.cliAccessToken;
130
await store.login({
131
access_key_id: flags.accessKeyId,
132
access_key_secret: flags.accessKeySecret,
0 commit comments