mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
seq: make arguments required
Right now seq panics when invoked without args.
This commit is contained in:
@@ -119,7 +119,8 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
||||
.multiple(true)
|
||||
.takes_value(true)
|
||||
.allow_hyphen_values(true)
|
||||
.max_values(3),
|
||||
.max_values(3)
|
||||
.required(true),
|
||||
)
|
||||
.get_matches_from(args);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user