code.gitea.io/gitea@v1.19.3/modules/process/manager_windows.go (about)

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