mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !go1.6
 | 
						|
 | 
						|
package shellwords
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"os/exec"
 | 
						|
	"runtime"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
func shellRun(line string) (string, error) {
 | 
						|
	var b []byte
 | 
						|
	var err error
 | 
						|
	if runtime.GOOS == "windows" {
 | 
						|
		b, err = exec.Command(os.Getenv("COMSPEC"), "/c", line).Output()
 | 
						|
	} else {
 | 
						|
		b, err = exec.Command(os.Getenv("SHELL"), "-c", line).Output()
 | 
						|
	}
 | 
						|
	if err != nil {
 | 
						|
		return "", err
 | 
						|
	}
 | 
						|
	return strings.TrimSpace(string(b)), nil
 | 
						|
}
 |