Skip to content

Commit

Permalink
fix: token create prints special character (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisnithin authored May 17, 2024
1 parent 2bfdda9 commit 432b639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/router/commands/token/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default (opts: BaseCommandOptions) => {

if (resp.response?.code === EnumStatusCode.OK) {
if (options.raw) {
process.stdout.write(resp.token);
console.log(resp.token);
return;
}

Expand Down

0 comments on commit 432b639

Please sign in to comment.