fix(console) add processing of ";"

This commit is contained in:
coderaiser 2014-08-11 06:26:23 -04:00
parent 7d6c56b416
commit cf349c8afd

View file

@ -114,7 +114,7 @@
isCD = command.match(new RegExp('^cd ?')),
isCDWin = command.match(new RegExp('^cd ?', 'i')),
symbolsExec = ['*', '&', '{', '}', '|', '\'', '"'],
symbolsExec = ['*', '&', '{', '}', '|', '\'', '"', ';'],
isSymbol = Util.isContainStr(command, symbolsExec),
CWD = process.cwd(),