Compare commits

..

2 Commits

1 changed files with 4 additions and 2 deletions

View File

@ -35,9 +35,11 @@ func cd(L *lua.LState) int {
switch e := err.(*os.PathError).Err.Error(); e { switch e := err.(*os.PathError).Err.Error(); e {
case "no such file or directory": case "no such file or directory":
LuaErr(L, 1) LuaErr(L, 1)
case "not a directory":
LuaErr(L, 2)
default: default:
fmt.Printf("Found unhandled error case: %s", e) fmt.Printf("Found unhandled error case: %s\n", e)
fmt.Printf("Report this at https://github.com/Hilbis/Hilbish/issues with the title being: \"fs: unahndled error case %s\", and show what caused it.\n", e) fmt.Printf("Report this at https://github.com/Rosettea/Hilbish/issues with the title being: \"fs: unhandled error case %s\", and show what caused it.\n", e)
LuaErr(L, 213) LuaErr(L, 213)
} }
} }