##// END OF EJS Templates
rhg: Config commands.status.terse is not supported...
Simon Sapin -
r49161:f9db8eeb default
parent child Browse files
Show More
@@ -148,6 +148,15 b' pub fn run(invocation: &crate::CliInvoca'
148 "ui.statuscopies is not yet supported with rhg status",
148 "ui.statuscopies is not yet supported with rhg status",
149 ));
149 ));
150 }
150 }
151 if invocation
152 .config
153 .get(b"commands", b"status.terse")
154 .is_some()
155 {
156 return Err(CommandError::unsupported(
157 "status.terse is not yet supported with rhg status",
158 ));
159 }
151
160
152 let ui = invocation.ui;
161 let ui = invocation.ui;
153 let config = invocation.config;
162 let config = invocation.config;
@@ -1,7 +1,3 b''
1 TODO: fix rhg bugs that make this test fail when status is enabled
2 $ unset RHG_STATUS
3
4
5 $ mkdir folder
1 $ mkdir folder
6 $ cd folder
2 $ cd folder
7 $ hg init
3 $ hg init
General Comments 0
You need to be logged in to leave comments. Login now