xtask: Allow "con" for "continue"

This commit is contained in:
Jonas Platte 2021-04-17 19:19:23 +02:00
parent 83e4c29603
commit 3995ef0fdb
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -231,7 +231,7 @@ impl ReleaseTask {
}
match input.trim().to_ascii_lowercase().as_str() {
"c" | "continue" => {
"c" | "con" | "continue" => {
break;
}
"a" | "abort" => {