2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-21 21:13:22 +00:00

Merge d47d23ea3e4317734a911441d77c7799be08e10b into 0e4b95d9b9945028b0d957797c2855de070c8033

This commit is contained in:
cathalogue 2024-07-05 17:07:58 -04:00 committed by GitHub
commit 1016b6a4c8
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;'