mirror of
https://github.com/crazy-max/diun.git
synced 2024-11-23 23:49:35 +00:00
5983df6491
Updates golangci-lint and updates to the correct config format. Also renames some unused parameters to `_` to appese `revive`.
12 lines
116 B
Go
12 lines
116 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package script
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func setSysProcAttr(_ *exec.Cmd) {
|
|
}
|