We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 435f77c commit 09a1d01Copy full SHA for 09a1d01
cmd/percas/src/start.rs
@@ -42,6 +42,9 @@ pub struct CommandStart {
42
43
impl CommandStart {
44
pub fn run(self) -> Result<(), Error> {
45
+ // Configure error stack to not print with colors
46
+ error_stack::Report::set_color_mode(error_stack::fmt::ColorMode::None);
47
+
48
let file = self.config_file;
49
let config = std::fs::read_to_string(&file).change_context_lazy(|| {
50
Error(format!("failed to read config file: {}", file.display()))
0 commit comments