miller/internal/pkg/platform/getargs_notwindows.go
2021-11-11 14:15:13 -05:00

17 lines
391 B
Go

// ================================================================
// Handling single quotes and double quotes is different on Windows unless
// particular care is taken, which is what this file does.
// ================================================================
//go:build !windows
// +build !windows
package platform
import (
"os"
)
func GetArgs() []string {
return os.Args
}