DOS apps to use _G.shell.resolvePathInput for opening a file

This commit is contained in:
minjaesong
2022-09-24 01:51:57 +09:00
parent c598b6633d
commit f9eecab830
5 changed files with 6 additions and 12 deletions

View File

@@ -40,7 +40,7 @@ else {
let file = files.open(`${_G.shell.resolvePathInput(filename).full}`)
if (!file.exists) {
printerrln(_G.shell.resolvePathInput(filename).string+": cannot open");
printerrln(file.fullPath+": cannot open");
return 1;
}