From c34462b812582fc2631c41e8e8b73f92f0bf0c65 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 2 Nov 2025 02:21:29 -0500 Subject: [PATCH] fix(options): accidental infinite loop due when not running on Dell firmware --- src/options/parser.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options/parser.rs b/src/options/parser.rs index 7191cfe..574335d 100644 --- a/src/options/parser.rs +++ b/src/options/parser.rs @@ -60,7 +60,9 @@ pub trait OptionsRepresentable { // If the argument starts with a tilde, remove it. if arg.starts_with("`") { args.remove(0); + continue; } + break; } // Represent options as key-value pairs.