mirror of
https://github.com/starship/starship.git
synced 2026-06-23 02:05:51 +07:00
fix: Fix the spacing around the AWS default symbol (#529)
This updates the default AWS default symbol to include a space after the symbol to make it a little bit more readable. Have also updated the README to include the AWS module.
This commit is contained in:
committed by
Matan Kushner
parent
4d1f0b6c6f
commit
a18408e30c
@@ -18,7 +18,7 @@ fn profile_set() -> io::Result<()> {
|
||||
.env_clear()
|
||||
.env("AWS_PROFILE", "astronauts")
|
||||
.output()?;
|
||||
let expected = format!("on {} ", Color::Yellow.bold().paint("☁️ astronauts"));
|
||||
let expected = format!("on {} ", Color::Yellow.bold().paint("☁️ astronauts"));
|
||||
let actual = String::from_utf8(output.stdout).unwrap();
|
||||
assert_eq!(expected, actual);
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user