equal
deleted
inserted
replaced
144 )); |
144 )); |
145 } |
145 } |
146 if invocation.config.get_bool(b"ui", b"statuscopies")? { |
146 if invocation.config.get_bool(b"ui", b"statuscopies")? { |
147 return Err(CommandError::unsupported( |
147 return Err(CommandError::unsupported( |
148 "ui.statuscopies is not yet supported with rhg status", |
148 "ui.statuscopies is not yet supported with rhg status", |
|
149 )); |
|
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", |
149 )); |
158 )); |
150 } |
159 } |
151 |
160 |
152 let ui = invocation.ui; |
161 let ui = invocation.ui; |
153 let config = invocation.config; |
162 let config = invocation.config; |