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

This commit is contained in:
Pat Laster
2022-10-13 20:03:35 -05:00
parent 6856ce0bf4
commit 50d2948aa1
+3 -1
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