Skip to content

Commit

Permalink
added quotes in login message
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamite-bud committed Jul 8, 2023
1 parent 612fabd commit ff13040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/src/commands/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,10 @@ impl Login {
match wasmer_registry::login::login_and_save_token(env.dir(), registry.as_str(), &token)? {
Some(s) => {
print!("Done!");
println!("\n✅ Login for Wasmer user {:?} saved", s)
println!("\n✅ Login for Wasmer user \"{:?}\" saved", s)
}
None => println!(
"\nError: no user found on registry {:?} with token {:?}. Token saved regardless.",
"\nError: no user found on registry \"{:?}\" with token \"{:?}\". Token saved regardless.",
registry, token
),
};
Expand Down

0 comments on commit ff13040

Please sign in to comment.