mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-21 13:03:22 +00:00
Merge d47d23ea3e4317734a911441d77c7799be08e10b into 38d036d96fd6760192ec5425f0f5e1d8fcd503eb
This commit is contained in:
commit
698110717a
@ -30,6 +30,7 @@ hilbish.run('wc -l', {
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix ansi attributes causing issues with text when cut off in greenhouse
|
- Fix ansi attributes causing issues with text when cut off in greenhouse
|
||||||
|
- Fix not compiling on freebsd
|
||||||
|
|
||||||
## [2.2.3] - 2024-04-27
|
## [2.2.3] - 2024-04-27
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// +build linux darwin
|
// +build unix
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// +build darwin linux
|
// +build unix
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// +build darwin linux
|
// +build unix
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// +build linux
|
// +build linux freebsd
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
@ -6,8 +6,8 @@ package main
|
|||||||
var (
|
var (
|
||||||
requirePaths = commonRequirePaths + `.. ';'
|
requirePaths = commonRequirePaths + `.. ';'
|
||||||
.. hilbish.dataDir .. '/libs/?/init.lua;'
|
.. hilbish.dataDir .. '/libs/?/init.lua;'
|
||||||
.. hilbish.dataDir .. '/libs/?/?.lua;'` + linuxUserPaths
|
.. hilbish.dataDir .. '/libs/?/?.lua;'` + unixUserPaths
|
||||||
linuxUserPaths = `
|
unixUserPaths = `
|
||||||
.. hilbish.userDir.data .. '/hilbish/libs/?/init.lua;'
|
.. hilbish.userDir.data .. '/hilbish/libs/?/init.lua;'
|
||||||
.. hilbish.userDir.data .. '/hilbish/libs/?/?.lua;'
|
.. hilbish.userDir.data .. '/hilbish/libs/?/?.lua;'
|
||||||
.. hilbish.userDir.data .. '/hilbish/libs/?.lua;'
|
.. hilbish.userDir.data .. '/hilbish/libs/?.lua;'
|
Loading…
x
Reference in New Issue
Block a user