feat: cd with no path changes to homedir

pull/21/head^2
TorchedSammy 2021-03-30 23:59:59 -04:00
parent 7326cb77c6
commit 8d92fc3b74
1 changed files with 3 additions and 1 deletions

View File

@ -10,8 +10,10 @@ commander.register('cd', function (path)
local ok, err = pcall(function() fs.cd(path[1]) end) local ok, err = pcall(function() fs.cd(path[1]) end)
if not ok then if not ok then
if err == 1 then if err == 1 then
print("directory does not exist") print('directory does not exist')
end end
end end
return
end end
fs.cd(os.getenv 'HOME')
end) end)