mirror of https://github.com/Hilbis/Hilbish
Compare commits
2 Commits
bc4e0f835f
...
afcc6fe63a
Author | SHA1 | Date |
---|---|---|
sammyette | afcc6fe63a | |
sammyette | a6a3962044 |
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue