Skip to content
Snippets Groups Projects
Unverified Commit e570bff8 authored by Bryan Liles's avatar Bryan Liles Committed by GitHub
Browse files

Merge pull request #358 from bryanl/plugin-env-home

Add HOME to plugin env
parents 3524328e bf5b5baa
No related branches found
No related tags found
No related merge requests found
......@@ -142,6 +142,7 @@ func runPlugin(p plugin.Plugin, args []string) error {
env := []string{
fmt.Sprintf("KS_PLUGIN_DIR=%s", p.RootDir),
fmt.Sprintf("KS_PLUGIN_NAME=%s", p.Config.Name),
fmt.Sprintf("HOME=%s", os.Getenv("HOME")),
}
root, err := appRoot()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment