chore: i18n.G, update POT
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -28,7 +28,7 @@ func MergeAbraShEnv(recipe recipe.Recipe, env envfile.AppEnv) error {
|
||||
}
|
||||
|
||||
for k, v := range abraShEnv {
|
||||
log.Debugf("read v:%s k: %s", v, k)
|
||||
log.Debugf(i18n.G("read v:%s k: %s", v, k))
|
||||
env[k] = v
|
||||
}
|
||||
|
||||
@ -190,13 +190,15 @@ func GatherSecretsForDeploy(cl *dockerClient.Client, app appPkg.App, showUnchang
|
||||
return nil, err
|
||||
}
|
||||
|
||||
log.Debugf("current secrets: %v", currentSecrets)
|
||||
log.Debugf(i18n.G("current secrets: %v", currentSecrets))
|
||||
|
||||
newSecrets, err := secret.PollSecretsStatus(cl, app)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
log.Debugf(i18n.G("new secrets: %v", newSecrets))
|
||||
|
||||
// Sort secrets to ensure reproducible output
|
||||
sort.Slice(newSecrets, func(i, j int) bool {
|
||||
return newSecrets[i].LocalName < newSecrets[j].LocalName
|
||||
|
Reference in New Issue
Block a user