Remove versions viewing from imag-view
This commit is contained in:
parent
7487c630f2
commit
89db4885f2
2 changed files with 1 additions and 10 deletions
|
@ -30,7 +30,6 @@ use std::path::PathBuf;
|
|||
use libimagrt::setup::generate_runtime_setup;
|
||||
use libimagerror::trace::trace_error_exit;
|
||||
use libimagentryview::builtin::stdout::StdoutViewer;
|
||||
use libimagentryview::builtin::versions::VersionsViewer;
|
||||
use libimagentryview::viewer::Viewer;
|
||||
|
||||
mod ui;
|
||||
|
@ -66,9 +65,7 @@ fn main() {
|
|||
}
|
||||
};
|
||||
|
||||
let res = if rt.cli().is_present("versions") {
|
||||
VersionsViewer::new(rt.store()).view_entry(&entry)
|
||||
} else {
|
||||
let res = {
|
||||
if scmd.is_present("view-in-stdout") {
|
||||
} else if scmd.is_present("view-in-ui") {
|
||||
warn!("Viewing in UI is currently not supported, switch to stdout");
|
||||
|
|
|
@ -10,12 +10,6 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
|||
.help("View this entry at this store path")
|
||||
.value_name("ID"))
|
||||
|
||||
.arg(Arg::with_name("versions")
|
||||
.long("versions")
|
||||
.takes_value(false)
|
||||
.required(false)
|
||||
.help("Only print available versions for this file"))
|
||||
|
||||
.arg(Arg::with_name("view-header")
|
||||
.long("header")
|
||||
.short("h")
|
||||
|
|
Loading…
Reference in a new issue