mirror of https://github.com/Hilbis/Hilbish
Compare commits
5 Commits
ac7acebb2f
...
0c3216e519
Author | SHA1 | Date |
---|---|---|
sammyette | 0c3216e519 | |
sammyette | 1334b96709 | |
sammyette | 3d0fffd49a | |
sammyette | 013fa30658 | |
crumb | 4e37e8ca47 |
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
# 🎀 Changelog
|
||||
|
||||
## Unreleased
|
||||
### Added
|
||||
- Made a few additions to the sink type:
|
||||
- `read()` method for retrieving input (so now the `in` sink of commanders is useful)
|
||||
- `flush()` and `autoFlush()` related to flushing outputs
|
||||
- `pipe` property to check if a sink with input is a pipe (like stdin)
|
||||
|
||||
### 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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue