2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-20 04:23:23 +00:00

chore: merge

This commit is contained in:
sammyette 2025-04-17 22:34:23 -04:00
commit fde615ff3f
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@
### Fixed
- Skip over file and prevent panic if info cannot be retrieved during file completion (due to permission error or anything else)
- Apply environment variables properly after 2.3 shell interpreter changes
- hilbish.sink.readAll() function now reads data that doesn't end in a newline
## [2.3.3] - 2024-11-04
### Fixed

View File

@ -104,6 +104,8 @@ func luaSinkReadAll(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
line, err := s.Rw.ReadString('\n')
if err != nil {
if err == io.EOF {
// We still want to add the data we read
lines = append(lines, line)
break
}