1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

mkfifo: make rustfmt work

This commit is contained in:
Michael Debertol 2021-06-18 11:58:23 +02:00
parent a8d62b9b23
commit 0fec449de3

View file

@ -86,8 +86,16 @@ pub fn uu_app() -> App<'static, 'static> {
.arg(
Arg::with_name(options::SE_LINUX_SECURITY_CONTEXT)
.short(options::SE_LINUX_SECURITY_CONTEXT)
.help("set the SELinux security context to default type")
.help("set the SELinux security context to default type"),
)
.arg(
Arg::with_name(options::CONTEXT)
.long(options::CONTEXT)
.value_name("CTX")
.help(
"like -Z, or if CTX is specified then set the SELinux \
or SMACK security context to CTX",
),
)
.arg(Arg::with_name(options::CONTEXT).long(options::CONTEXT).value_name("CTX").help("like -Z, or if CTX is specified then set the SELinux\nor SMACK security context to CTX"))
.arg(Arg::with_name(options::FIFO).hidden(true).multiple(true))
}