Fix guard in parseCommand.

This commit is contained in:
Juliusz Chroboczek
2026-04-29 19:43:14 +02:00
parent 56220bb942
commit fb546d8b96
+1 -1
View File
@@ -3842,7 +3842,7 @@ function parseCommand(line) {
while(i < line.length && line[i] === ' ')
i++;
let start = ' ';
if(i < line.length && line[i] === '"' || line[i] === "'") {
if(i < line.length && (line[i] === '"' || line[i] === "'")) {
start = line[i];
i++;
}