Fix guard in parseCommand.
This commit is contained in:
+1
-1
@@ -3842,7 +3842,7 @@ function parseCommand(line) {
|
|||||||
while(i < line.length && line[i] === ' ')
|
while(i < line.length && line[i] === ' ')
|
||||||
i++;
|
i++;
|
||||||
let start = ' ';
|
let start = ' ';
|
||||||
if(i < line.length && line[i] === '"' || line[i] === "'") {
|
if(i < line.length && (line[i] === '"' || line[i] === "'")) {
|
||||||
start = line[i];
|
start = line[i];
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user