Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
codekeyz committed Feb 21, 2024
commit b0582b5387b146ddf2434b86322db8663b89d2cb
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ class TokenListCommand extends BaseGlobeCommand {

return ExitCode.success.code;
} on ApiException catch (e) {
listTokenProgress.fail('✗ Failed to create token: ${e.message}');
listTokenProgress.fail('✗ Failed to list tokens: ${e.message}');
return ExitCode.software.code;
} catch (e, s) {
listTokenProgress.fail('✗ Failed to create token: $e');
listTokenProgress.fail('✗ Failed to list tokens: $e');
logger.detail(s.toString());
return ExitCode.software.code;
}
Expand Down