forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_exec.go
77 lines (66 loc) · 1.41 KB
/
cmd_exec.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package main
import (
"fmt"
"os"
"path/filepath"
"syscall"
)
// `direnv exec [DIR] <COMMAND> ...`
var CmdExec = &Cmd{
Name: "exec",
Desc: "Executes a command after loading the first .envrc found in DIR",
Args: []string{"[DIR]", "COMMAND", "[...ARGS]"},
Fn: func(env Env, args []string) (err error) {
var (
backupDiff *EnvDiff
config *Config
newEnv Env
rcPath string
command string
)
if len(args) < 2 {
return fmt.Errorf("missing DIR and COMMAND arguments")
}
rcPath = filepath.Clean(args[1])
fi, err := os.Stat(rcPath)
if err != nil {
return
}
if fi.IsDir() {
if len(args) < 3 {
return fmt.Errorf("missing COMMAND argument")
}
command = args[2]
args = args[2:]
} else {
command = rcPath
rcPath = filepath.Dir(rcPath)
args = args[1:]
}
if config, err = LoadConfig(env); err != nil {
return
}
rc := FindRC(rcPath, config.AllowDir())
// Restore pristine environment if needed
if backupDiff, err = config.EnvDiff(); err == nil {
backupDiff.Reverse().Patch(env)
}
delete(env, DIRENV_DIR)
delete(env, DIRENV_MTIME)
delete(env, DIRENV_DIFF)
// Load the rc
if rc != nil {
if newEnv, err = rc.Load(config, env); err != nil {
return
}
} else {
newEnv = env
}
command, err = lookPath(command, newEnv["PATH"])
if err != nil {
return
}
err = syscall.Exec(command, args, newEnv.ToGoEnv())
return
},
}