Merge pull request #205 from matthiasbeyer/libimagrt/std-args-no-short

rt: Remove short versions for "config" and "runtimepath" std arg
This commit is contained in:
Matthias Beyer 2016-02-23 10:13:37 +01:00
commit fce1ebd1ab

View file

@ -100,14 +100,12 @@ impl<'a> Runtime<'a> {
.takes_value(false)) .takes_value(false))
.arg(Arg::with_name("config") .arg(Arg::with_name("config")
.short("c")
.long("config") .long("config")
.help("Path to alternative config file") .help("Path to alternative config file")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
.arg(Arg::with_name("runtimepath") .arg(Arg::with_name("runtimepath")
.short("r")
.long("rtp") .long("rtp")
.help("Alternative runtimepath") .help("Alternative runtimepath")
.required(false) .required(false)