mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-14 04:56:28 +00:00
Update dependencies (#1929)
This commit is contained in:
6
vendor/golang.org/x/tools/internal/gocommand/invoke.go
generated
vendored
6
vendor/golang.org/x/tools/internal/gocommand/invoke.go
generated
vendored
@ -264,8 +264,10 @@ func cmdDebugStr(cmd *exec.Cmd) string {
|
||||
env := make(map[string]string)
|
||||
for _, kv := range cmd.Env {
|
||||
split := strings.SplitN(kv, "=", 2)
|
||||
k, v := split[0], split[1]
|
||||
env[k] = v
|
||||
if len(split) == 2 {
|
||||
k, v := split[0], split[1]
|
||||
env[k] = v
|
||||
}
|
||||
}
|
||||
|
||||
var args []string
|
||||
|
Reference in New Issue
Block a user