1
1
鏡像自 https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-28 15:12:45 -04:00

made os.chdir play nicer with the filesystem

This commit is contained in:
XeonSquared 2019-11-06 20:30:26 +11:00
父節點 4e276c9ccd
當前提交 00a0889842

查看文件

@ -10,7 +10,7 @@ function os.chdir(p) -- changes the current working directory of the calling pro
end
p = "/"..table.concat(np,"/")
end
if fs.exists(p) and fs.list(p) then
if fs.list(p) then
os.setenv("PWD",p)
else
return false, "no such directory"