chore: merge from master

sink-enhance
sammyette 2023-03-25 17:38:34 -04:00
commit 1334b96709
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# 🎀 Changelog
## Unreleased
### Fixed
- Replaced `sed` in-place editing with `grep` and `mv` for compatibility with BSD utils
## [2.1.0] - 2022-02-10
### Added
- Documented custom userdata types (Job and Timer Objects)

View File

@ -34,4 +34,4 @@ tasks:
- rm -vrf
"{{.DESTDIR}}{{.BINDIR}}/hilbish"
"{{.DESTDIR}}{{.LIBDIR}}"
- sed -i '/hilbish/d' /etc/shells
- grep -v 'hilbish' /etc/shells > /tmp/shells.hilbish_uninstall && mv /tmp/shells.hilbish_uninstall /etc/shells

View File

@ -7,7 +7,7 @@ commander.register('bg', function(_, sinks)
return 1
end
local err = job.background()
local err = job:background()
if err then
sinks.out:writeln('bg: ' .. err)
return 2

View File

@ -7,7 +7,7 @@ commander.register('fg', function(_, sinks)
return 1
end
local err = job.foreground() -- waits for job; blocks
local err = job:foreground() -- waits for job; blocks
if err then
sinks.out:writeln('fg: ' .. err)
return 2