Merge pull request #1819 from vaijab/fix_exec_panic

Fix exec panic when missing variables
This commit is contained in:
Brad Rydzewski 2016-10-24 23:43:55 +02:00 committed by GitHub
commit 871f5366b5

View file

@ -15,6 +15,11 @@ import (
func argsToEnv(from map[string]interface{}, to map[string]string) error {
for k, v := range from {
if v == nil {
to[k] = ""
continue
}
t := reflect.TypeOf(v)
vv := reflect.ValueOf(v)