SQUOTE bug fix in the shell

This commit is contained in:
Wiz 2022-02-01 15:34:33 -05:00
parent c2510e5ab0
commit 76e7593b4b

View file

@ -80,6 +80,7 @@ public class ShellUtils {
default:
curArg.append(c);
}
break;
case SQUOTE_ESCAPE:
curArg.append(c);
state = State.SQUOTE;