GoWSL
GoWSL copied to clipboard
GoWSL is a package that wraps around the wslApi.dll for safe and idiomatic use within Go projects.
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 8. Release notes Sourced from golangci/golangci-lint-action's releases. v8.0.0 Requires golangci-lint version >= v2.1.0 What's Changed Changes feat: use absolute paths by default when using working-directory...
I was wondering if there's any explicit benefit from the github.com/0xrawsec/golang-utils library being imported? Looks to me like it's just being used for logging in one of the unit test...
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.30.0 to 0.31.0. Commits 74cfc93 all: upgrade go directive to at least 1.23.0 [generated] See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any...
How can I hide the CMD windows that opens when I run a WSL command? I tried the following, but the command object is missing the attribute for hidden window...
At the moment, file suffixes are used to denote build targets. Using build tags would allow this to be expanded on all operating systems that go supports. As a start,...
In the function definition of `Wait` for the `Cmd` struct, the `finished` boolean prevents `Wait` from being called more than once ```go if c.finished { return errors.New("Wait was already called")...