2
2
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:
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
- Fix ansi attributes causing issues with text when cut off in greenhouse
- Fix not compiling on freebsd
## [2.2.3] - 2024-04-27
### Fixed

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
// +build linux
// +build linux freebsd
package main
@ -6,8 +6,8 @@ package main
var (
requirePaths = commonRequirePaths + `.. ';'
.. hilbish.dataDir .. '/libs/?/init.lua;'
.. hilbish.dataDir .. '/libs/?/?.lua;'` + linuxUserPaths
linuxUserPaths = `
.. hilbish.dataDir .. '/libs/?/?.lua;'` + unixUserPaths
unixUserPaths = `
.. hilbish.userDir.data .. '/hilbish/libs/?/init.lua;'
.. hilbish.userDir.data .. '/hilbish/libs/?/?.lua;'
.. hilbish.userDir.data .. '/hilbish/libs/?.lua;'