mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
User of `nsutil` library should be able to do the following and for it
to work:
```
var errno syscall.Errno
if errors.As(err, &errno) {
if errno == unix.EBUSY { ... }
}
```
This commit fixes that issue.