##// END OF EJS Templates
rhg: fallback if tweakdefaults or statuscopies is enabled with status...
Pulkit Goyal -
r48985:64b8676f default
parent child Browse files
Show More
@@ -133,6 +133,18 b' pub fn run(invocation: &crate::CliInvoca'
133 ));
133 ));
134 }
134 }
135
135
136 // TODO: lift these limitations
137 if invocation.config.get_bool(b"ui", b"tweakdefaults").ok() == Some(true) {
138 return Err(CommandError::unsupported(
139 "ui.tweakdefaults is not yet supported with rhg status",
140 ));
141 }
142 if invocation.config.get_bool(b"ui", b"statuscopies").ok() == Some(true) {
143 return Err(CommandError::unsupported(
144 "ui.statuscopies is not yet supported with rhg status",
145 ));
146 }
147
136 let ui = invocation.ui;
148 let ui = invocation.ui;
137 let args = invocation.subcommand_args;
149 let args = invocation.subcommand_args;
138 let display_states = if args.is_present("all") {
150 let display_states = if args.is_present("all") {
General Comments 0
You need to be logged in to leave comments. Login now