##// END OF EJS Templates
rhg: Fall back to Python if ui.relative-paths is configured...
Simon Sapin -
r47473:c184b490 default
parent child Browse files
Show More
@@ -27,6 +27,13 b" pub fn args() -> clap::App<'static, 'sta"
27 }
27 }
28
28
29 pub fn run(invocation: &crate::CliInvocation) -> Result<(), CommandError> {
29 pub fn run(invocation: &crate::CliInvocation) -> Result<(), CommandError> {
30 let relative = invocation.config.get(b"ui", b"relative-paths");
31 if relative.is_some() {
32 return Err(CommandError::unsupported(
33 "non-default ui.relative-paths",
34 ));
35 }
36
30 let rev = invocation.subcommand_args.value_of("rev");
37 let rev = invocation.subcommand_args.value_of("rev");
31
38
32 let repo = invocation.repo?;
39 let repo = invocation.repo?;
General Comments 0
You need to be logged in to leave comments. Login now