fix plugin detection in help commands (#7088)

This commit is contained in:
Darren Schroeder 2022-11-10 16:12:09 -06:00 committed by GitHub
parent 312e9bf5d6
commit 3e56e81d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ pub trait Command: Send + Sync + CommandClone {
(true, true, false, false, false) => CommandType::Custom,
(true, false, true, false, false) => CommandType::Keyword,
(false, true, false, true, false) => CommandType::External,
(false, false, false, false, true) => CommandType::Plugin,
(true, false, false, false, true) => CommandType::Plugin,
_ => CommandType::Other,
}
}