diff --git a/src/shell/shell_cmds.cpp b/src/shell/shell_cmds.cpp index c3869213..164b4346 100644 --- a/src/shell/shell_cmds.cpp +++ b/src/shell/shell_cmds.cpp @@ -53,7 +53,7 @@ void DOS_Shell::DoCommand(char * line) { while (*line) { if (*line==32) break; if (*line=='/') break; - if (*line=='.') break; + if ((*line=='.') && (*(line+1)=='.')) break; *cmd_write++=*line++; } *cmd_write=0;