##// END OF EJS Templates
rhg: don't print copy source when --no-status is passed
Arun Kulshreshtha -
r51337:668a8714 stable
parent child Browse files
Show More
@@ -557,7 +557,7 b" impl DisplayStatusPaths<'_> {"
557 }
557 }
558 self.ui
558 self.ui
559 .write_stdout_labelled(&format_bytes!(b"{}\n", path), label)?;
559 .write_stdout_labelled(&format_bytes!(b"{}\n", path), label)?;
560 if let Some(source) = copy_source {
560 if let Some(source) = copy_source.filter(|_| !self.no_status) {
561 let label = "status.copied";
561 let label = "status.copied";
562 self.ui.write_stdout_labelled(
562 self.ui.write_stdout_labelled(
563 &format_bytes!(b" {}\n", source.as_bytes()),
563 &format_bytes!(b" {}\n", source.as_bytes()),
General Comments 0
You need to be logged in to leave comments. Login now