We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Motivation: using built-in package os/exec is not convenient. Need a top-level abstraction allows to
os/exec
See https://github.com/kamilsk/egg/blob/01f00b79330523b3f425bbbf8a61523feaafc426/internal/cmd/deps/list.go#L13-L67.
Draft
cancel, err := process.Run("id", cmd) if err != nil { ... } defer cancel() process.Find("id").Signal(os.Interrupt) // == .Stop() cmd := process.Go().Mod().Tidy(args...).WithParam("key", "value").WithFlag("edit")
To do
The text was updated successfully, but these errors were encountered:
kamilsk
No branches or pull requests
Motivation: using built-in package
os/exec
is not convenient. Need a top-level abstraction allows toSee https://github.com/kamilsk/egg/blob/01f00b79330523b3f425bbbf8a61523feaafc426/internal/cmd/deps/list.go#L13-L67.
Draft
To do
The text was updated successfully, but these errors were encountered: