2022-06-03 20:06:18 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-03 20:06:18 +05:30
|
|
|
|
|
|
|
//go:build windows
|
|
|
|
|
|
|
|
package process
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetSysProcAttribute sets the common SysProcAttrs for commands
|
|
|
|
func SetSysProcAttribute(cmd *exec.Cmd) {
|
|
|
|
// Do nothing
|
|
|
|
}
|