Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: WERF_SET_DOCKER_CONFIG_VALUE env variable collision with --set p…
…aram
  • Loading branch information
distorhead committed Oct 12, 2021
1 parent ccd6b62 commit 30177b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/werf/common/common.go
Expand Up @@ -1267,7 +1267,7 @@ func getAddCustomTag(cmdData *CmdData) []string {
}

func GetSet(cmdData *CmdData) []string {
return append(PredefinedValuesByEnvNamePrefix("WERF_SET_", "WERF_SET_STRING_", "WERF_SET_FILE_"), *cmdData.Set...)
return append(PredefinedValuesByEnvNamePrefix("WERF_SET_", "WERF_SET_STRING_", "WERF_SET_FILE_", "WERF_SET_DOCKER_CONFIG_VALUE"), *cmdData.Set...)
}

func GetSetString(cmdData *CmdData) []string {
Expand Down

0 comments on commit 30177b4

Please sign in to comment.