mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
25 lines
440 B
Go
25 lines
440 B
Go
package compiler
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/go-task/task/v2/internal/taskfile"
|
|
)
|
|
|
|
// GetEnviron the all return all environment variables encapsulated on a
|
|
// taskfile.Vars
|
|
func GetEnviron() taskfile.Vars {
|
|
var (
|
|
env = os.Environ()
|
|
m = make(taskfile.Vars, len(env))
|
|
)
|
|
|
|
for _, e := range env {
|
|
keyVal := strings.SplitN(e, "=", 2)
|
|
key, val := keyVal[0], keyVal[1]
|
|
m[key] = taskfile.Var{Static: val}
|
|
}
|
|
return m
|
|
}
|