reset color in colorize
This commit is contained in:
parent
cb3c42078a
commit
1ec2694acc
|
@ -42,6 +42,7 @@ fn colorize(message: &str, color: &ColorSpec) {
|
||||||
let mut stdout = StandardStream::stdout(*COLOR_CHOICE);
|
let mut stdout = StandardStream::stdout(*COLOR_CHOICE);
|
||||||
stdout.set_color(color).unwrap();
|
stdout.set_color(color).unwrap();
|
||||||
writeln!(&mut stdout, "{}", message).unwrap();
|
writeln!(&mut stdout, "{}", message).unwrap();
|
||||||
|
stdout.set_color(&ColorSpec::new()).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Display in the console the number of pages/sections in the site
|
/// Display in the console the number of pages/sections in the site
|
||||||
|
|
Loading…
Reference in a new issue