Skip to content

Instantly share code, notes, and snippets.

@picatz
Created January 21, 2018 19:31
Show Gist options
  • Save picatz/c9790933b7d6ca2f2507d9e619cc7116 to your computer and use it in GitHub Desktop.
Save picatz/c9790933b7d6ca2f2507d9e619cc7116 to your computer and use it in GitHub Desktop.
func EnviromentPaths() []string {
val, ok := os.LookupEnv("PATH")
if !ok {
return []string{}
}
return strings.Split(val, ":")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment