This commit is contained in:
2026-05-30 22:12:37 +08:00
parent eaa4ba6eec
commit af238e67ef

View File

@@ -112,7 +112,7 @@ impl INode for CommandNode {
} else {
s.push_str(", ");
}
if arg.contains(" ") || arg.contains(",") {
if arg.contains(" ") || arg.contains(",") || arg.contains("=") {
s.push_str(&format!("\"{}\"", arg));
} else {
s.push_str(arg);