fix: use hilbish.home instead of home env var

pull/69/head
sammyette 2021-06-14 18:12:12 -04:00
parent eab3f27ebf
commit 805eefcd17
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ commander.register('cd', function (args)
bait.throw('cd', path)
return
end
fs.cd(os.getenv 'HOME')
bait.throw('cd', os.getenv 'HOME')
fs.cd(hilbish.home)
bait.throw('cd', hilbish.home)
return
end)