mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "cd06c61195a1d76df71eee806c41db9ef379ea5b" and "a4dbfbf4bbe8a288139861b8af80ab42a45f0f21" have entirely different histories.
cd06c61195
...
a4dbfbf4bb
3
lua.go
3
lua.go
|
@ -170,8 +170,7 @@ func hshinterval(L *lua.LState) int {
|
||||||
NRet: 0,
|
NRet: 0,
|
||||||
Protect: true,
|
Protect: true,
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
fmt.Fprintln(os.Stderr,
|
panic(err)
|
||||||
"Error in interval function:\n\n", err)
|
|
||||||
}
|
}
|
||||||
case <-stop:
|
case <-stop:
|
||||||
ticker.Stop()
|
ticker.Stop()
|
||||||
|
|
2
vars.go
2
vars.go
|
@ -2,7 +2,7 @@ package main
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
// String vars that are free to be changed at compile time
|
||||||
var (
|
var (
|
||||||
version = "v0.5.0"
|
version = "v0.4.0"
|
||||||
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
||||||
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
||||||
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
||||||
|
|
Loading…
Reference in New Issue