Add break after key is found in for loop

Signed-off-by: Antonio Murdaca <runcom@linux.com>
This commit is contained in:
Antonio Murdaca 2015-07-03 20:37:34 +02:00
Родитель bca32648f4
Коммит a5be803458
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -33,6 +33,7 @@ func Merge(userConf, imageConf *Config) error {
userEnvKey := strings.Split(userEnv, "=")[0] userEnvKey := strings.Split(userEnv, "=")[0]
if imageEnvKey == userEnvKey { if imageEnvKey == userEnvKey {
found = true found = true
break
} }
} }
if !found { if !found {