command.js: fixing bad path syntax on shell.execute

This commit is contained in:
minjaesong
2020-11-06 09:58:03 +09:00
parent 541e8245bf
commit 0000311e07
5 changed files with 61 additions and 9 deletions

View File

@@ -13,11 +13,11 @@ _TVDOS.getPath = function() {
};
// initial values
_TVDOS.variables = {
DOSDIR: "\\tvdos\\",
DOSDIR: "\\tvdos",
LANG: "EN",
PATH: "\\tvdos\\bin\\",
PATH: "\\tvdos\\bin",
PATHEXT: ".com;.bat;.js",
HELPPATH: "\\tvdos\\help\\",
HELPPATH: "\\tvdos\\help",
OS_NAME: "Terrarum Virtual DOS",
OS_VERSION: _TVDOS.VERSION
};