Use positional args

This commit is contained in:
Matthias Beyer 2017-09-20 16:44:39 +02:00
parent 4b906f27b1
commit 456c5539cc

View file

@ -27,8 +27,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.about("Add a reference to a file outside of the store") .about("Add a reference to a file outside of the store")
.version("0.1") .version("0.1")
.arg(Arg::with_name("path") .arg(Arg::with_name("path")
.long("path") .index(1)
.short("p")
.takes_value(true) .takes_value(true)
.required(true) .required(true)
.help("The path of the file") .help("The path of the file")
@ -52,8 +51,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.about("Remove a reference") .about("Remove a reference")
.version("0.1") .version("0.1")
.arg(Arg::with_name("hash") .arg(Arg::with_name("hash")
.long("hash") .index(1)
.short("h")
.takes_value(true) .takes_value(true)
.required(true) .required(true)
.help("Remove the reference with this hash") .help("Remove the reference with this hash")