mirror of https://github.com/Hilbis/Hilbish
fix: correct url to github repo and add newline after error
parent
bc4e0f835f
commit
a6a3962044
|
@ -36,8 +36,8 @@ func cd(L *lua.LState) int {
|
||||||
case "no such file or directory":
|
case "no such file or directory":
|
||||||
LuaErr(L, 1)
|
LuaErr(L, 1)
|
||||||
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