gitea源码

manager_windows.go 275B

12345678910111213141516
  1. // Copyright 2022 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. //go:build windows
  4. package process
  5. import (
  6. "os/exec"
  7. )
  8. // SetSysProcAttribute sets the common SysProcAttrs for commands
  9. func SetSysProcAttribute(cmd *exec.Cmd) {
  10. // Do nothing
  11. }