cathalogue 2024-06-14 20:34:51 +01:00 committed by GitHub
commit 698110717a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 6 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
// +build linux darwin // +build unix
package main package main

View File

@ -1,4 +1,4 @@
// +build darwin linux // +build unix
package main package main

View File

@ -1,4 +1,4 @@
// +build darwin linux // +build unix
package main package main

View File

@ -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;'