made os.chdir play nicer with the filesystem

This commit is contained in:
Izaya 2019-11-06 20:30:26 +11:00
parent 4e276c9ccd
commit 00a0889842
1 changed files with 1 additions and 1 deletions

View File

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