Fixed rm --force argument not forcing prompt to not show up

This commit is contained in:
Pat Laster 2022-10-09 17:24:36 -05:00
parent 6856ce0bf4
commit 50d2948aa1

View file

@ -98,7 +98,9 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let options = Options {
force,
interactive: {
if matches.contains_id(OPT_PROMPT) {
if force {
InteractiveMode::Never
} else if matches.contains_id(OPT_PROMPT) {
InteractiveMode::Always
} else if matches.contains_id(OPT_PROMPT_MORE) {
InteractiveMode::Once