Update "docker tag" usage to use "-f"
This commit is contained in:
parent
1a0f624c3e
commit
f69ffa8e4f
|
|
@ -319,7 +319,7 @@ while [ "$#" -gt 0 ]; do
|
||||||
for namespace in $namespaces; do
|
for namespace in $namespaces; do
|
||||||
if ! (
|
if ! (
|
||||||
set -x
|
set -x
|
||||||
"$docker" tag "$repoTag" "$namespace/$repoTag"
|
"$docker" tag -f "$repoTag" "$namespace/$repoTag"
|
||||||
) &>> "$thisLog"; then
|
) &>> "$thisLog"; then
|
||||||
echo "- failed 'docker tag'; see $thisLog"
|
echo "- failed 'docker tag'; see $thisLog"
|
||||||
didFail=1
|
didFail=1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue