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 7b67672 commit a0aacfdCopy full SHA for a0aacfd
src/main.rs
@@ -241,7 +241,7 @@ impl KeeManager {
241
242
if config.accounts.is_empty() {
243
println!(
244
- "\n No accounts configured. Use '{}' to add an account.",
+ "\n No accounts configured.\n Use '{}' to add an account.",
245
hlt("kee add <account_name>")
246
);
247
return;
@@ -301,7 +301,7 @@ impl KeeManager {
301
let hlt_account = hlt(account_name);
302
match self.remove_aws_profile(&account_info.profile_name) {
303
Ok(_) => {
304
- println!(" [✓] Profile '{hlt_account}'.");
+ println!(" [✓] Profile '{hlt_account}' has been removed.");
305
}
306
Err(e) => {
307
println!(" [✓] Profile '{hlt_account}' removed from {}.", hlt("Kee"));
0 commit comments