mirror of https://github.com/Hilbis/Hilbish
Compare commits
2 Commits
a4dbfbf4bb
...
cd06c61195
Author | SHA1 | Date |
---|---|---|
sammyette | cd06c61195 | |
sammyette | f594d48790 |
3
lua.go
3
lua.go
|
@ -170,7 +170,8 @@ func hshinterval(L *lua.LState) int {
|
||||||
NRet: 0,
|
NRet: 0,
|
||||||
Protect: true,
|
Protect: true,
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
panic(err)
|
fmt.Fprintln(os.Stderr,
|
||||||
|
"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.4.0"
|
version = "v0.5.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