Fix regression in error message color printing (#566)

Make the word "error" print in red instead of plain text.
This commit is contained in:
Casey Rodarmor
2019-12-12 17:55:55 -08:00
committed by GitHub
parent bb4afe1481
commit fe906a1b6f
2 changed files with 3 additions and 3 deletions

View File

@@ -970,7 +970,7 @@ test! {
justfile: "b := a\na := `exit 100`\nbar:\n echo '{{`exit 200`}}'",
args: ("--color", "always"),
stdout: "",
stderr: "\u{1b}[1;31merror:\u{1b}[0m \u{1b}[1mBacktick failed with exit code 100
stderr: "\u{1b}[1;31merror\u{1b}[0m: \u{1b}[1mBacktick failed with exit code 100
\u{1b}[0m |\n2 | a := `exit 100`\n | \u{1b}[1;31m^^^^^^^^^^\u{1b}[0m\n",
status: 100,
}
@@ -1008,7 +1008,7 @@ recipe:
@exit 100",
args: ("--color=always"),
stdout: "",
stderr: "\u{1b}[1;31merror:\u{1b}[0m \u{1b}[1m\
stderr: "\u{1b}[1;31merror\u{1b}[0m: \u{1b}[1m\
Recipe `recipe` failed on line 3 with exit code 100\u{1b}[0m\n",
status: 100,
}