1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

uname: add missing paren

This commit is contained in:
Tai Sassen-Liang 2017-12-27 11:57:06 +01:00
parent 5d4e404765
commit e79f5277ed

View file

@ -61,7 +61,7 @@ pub fn uumain(args: Vec<String>) -> i32 {
.short("s") .short("s")
.long(OPT_KERNELNAME) .long(OPT_KERNELNAME)
.alias("sysname") // Obsolescent option in GNU uname .alias("sysname") // Obsolescent option in GNU uname
.help("print the operating system name.") .help("print the operating system name."))
.arg(Arg::with_name(OPT_NODENAME) .arg(Arg::with_name(OPT_NODENAME)
.short("n") .short("n")
.long(OPT_NODENAME) .long(OPT_NODENAME)