chore: merge

pull/313/head
sammyette 2024-07-19 09:51:12 -04:00
commit bfa3b55542
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
14 changed files with 16 additions and 12 deletions

View File

@ -29,7 +29,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.18.8'
go-version: '1.22.2'
- name: Download Task
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
- name: Build

View File

@ -30,6 +30,7 @@ hilbish.run('wc -l', {
### Fixed
- Fix ansi attributes causing issues with text when cut off in greenhouse
- `exec` command should return if no arg presented
## [2.2.3] - 2024-04-27
### Fixed

View File

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

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

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

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,5 +1,8 @@
local commander = require 'commander'
commander.register('exec', function(args)
if #args == 0 then
return
end
hilbish.exec(args[1])
end)

View File

@ -1,4 +1,4 @@
// +build pprof
//go:build pprof
package main

View File

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

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build darwin
//go:build darwin
package main

View File

@ -1,4 +1,4 @@
// +build linux
//go:build unix && !darwin
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main