fix(commands/cd): use absolute paths to cd

pull/314/merge
sammyette 2024-07-26 18:08:16 -04:00
parent a41a5504f4
commit 5b46158008
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ commander.register('cd', function (args, sinks)
dirs.setOld(hilbish.cwd())
dirs.push(path)
local ok, err = pcall(function() fs.cd(path) end)
local ok, err = pcall(function() fs.cd(fs.abs(path)) end)
if not ok then
sinks.out:writeln(err)
return 1