Merge pull request #1347 from matthiasbeyer/imag-ids/prefix
imag-ids: prefix printing off by default
This commit is contained in:
commit
1d3994d108
2 changed files with 16 additions and 1 deletions
|
@ -40,7 +40,7 @@ extern crate libimagstore;
|
|||
|
||||
use std::io::Write;
|
||||
|
||||
use clap::App;
|
||||
use clap::{Arg, App};
|
||||
|
||||
use libimagrt::setup::generate_runtime_setup;
|
||||
use libimagerror::trace::MapErrTrace;
|
||||
|
@ -51,6 +51,12 @@ use libimagerror::io::ToExitCode;
|
|||
/// No special CLI
|
||||
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||
app
|
||||
.arg(Arg::with_name("print-storepath")
|
||||
.long("with-storepath")
|
||||
.takes_value(false)
|
||||
.required(false)
|
||||
.multiple(false)
|
||||
.help("Print the storepath for each id"))
|
||||
}
|
||||
|
||||
fn main() {
|
||||
|
@ -60,9 +66,16 @@ fn main() {
|
|||
"print all ids",
|
||||
build_ui);
|
||||
|
||||
let print_storepath = rt.cli().is_present("print-storepath");
|
||||
|
||||
rt.store()
|
||||
.entries()
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.map(|id| if print_storepath {
|
||||
id
|
||||
} else {
|
||||
id.without_base()
|
||||
})
|
||||
.for_each(|id| {
|
||||
let _ = writeln!(rt.stdout(), "{}", id.to_str().map_err_trace_exit_unwrap(1))
|
||||
.to_exit_code()
|
||||
|
|
|
@ -41,6 +41,8 @@ This section contains the changelog from the last release to the next release.
|
|||
output as JSON.
|
||||
* `imag-edit` can now read store ids from stdin, sorts
|
||||
`imag ids | fzf | imag edit -I` is not a thing.
|
||||
* `imag ids` does not print the path of the store. Can be turned on using
|
||||
commandline flag.
|
||||
* Minor changes
|
||||
* A license-checker was included into the CI setup, which checks whether all
|
||||
".rs"-files have the license header at the top of the file
|
||||
|
|
Loading…
Reference in a new issue