Skip to content

Commit e734377

Browse files
Add job=... alias for jobs=...
1 parent dceadf0 commit e734377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bors/command/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ fn parser_try(command: &CommandPart<'_>, parts: &[CommandPart<'_>]) -> ParseResu
290290
))));
291291
}
292292
},
293-
("jobs", value) => {
293+
("job" | "jobs", value) => {
294294
let raw_jobs: Vec<_> = value.split(',').map(|s| s.to_string()).collect();
295295
if raw_jobs.is_empty() {
296296
return Some(Err(CommandParseError::ValidationError(

0 commit comments

Comments
 (0)