fix: registry_password in quotes
Copes with passwords containing spaces.
This commit is contained in:
parent
0000ce5a12
commit
7b42336408
|
@ -54,7 +54,7 @@ function(config)
|
||||||
commands: [
|
commands: [
|
||||||
'set -e',
|
'set -e',
|
||||||
'export REGISTRY=$${REGISTRY_DOMAIN}:$${REGISTRY_PORT}/',
|
'export REGISTRY=$${REGISTRY_DOMAIN}:$${REGISTRY_PORT}/',
|
||||||
'%(script)s $${REGISTRY} $${REGISTRY_PASSWORD}' % config,
|
'%(script)s $${REGISTRY} "$${REGISTRY_PASSWORD}"' % config,
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue