Switching to wsl
Some checks failed
Build / build (push) Successful in 10m47s
Publish Image / publish (push) Failing after 30s
Test / build (push) Successful in 11m0s

This commit is contained in:
Charles Smith
2024-03-31 19:35:04 -04:00
parent 7a32cce8a1
commit a85dc73954
15 changed files with 91 additions and 85 deletions

View File

@@ -18,7 +18,7 @@ func Close(args ...object.Object) object.Object {
fd := int(args[0].(*object.Integer).Value)
err := syscall.Close(syscall.Handle(fd))
err := syscall.Close(fd)
if err != nil {
return newError("IOError: %s", err)
}