fix(options): accidental infinite loop due when not running on Dell firmware

This commit is contained in:
2025-11-02 02:21:29 -05:00
parent 79471f6862
commit c34462b812

View File

@@ -60,7 +60,9 @@ pub trait OptionsRepresentable {
// If the argument starts with a tilde, remove it. // If the argument starts with a tilde, remove it.
if arg.starts_with("`") { if arg.starts_with("`") {
args.remove(0); args.remove(0);
continue;
} }
break;
} }
// Represent options as key-value pairs. // Represent options as key-value pairs.