From f69ffa8e4fa185ff808a410a47c50052e4f55372 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 24 Dec 2014 10:08:37 -0700 Subject: [PATCH] Update "docker tag" usage to use "-f" --- bashbrew.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashbrew.sh b/bashbrew.sh index 4492264..b2a7578 100755 --- a/bashbrew.sh +++ b/bashbrew.sh @@ -319,7 +319,7 @@ while [ "$#" -gt 0 ]; do for namespace in $namespaces; do if ! ( set -x - "$docker" tag "$repoTag" "$namespace/$repoTag" + "$docker" tag -f "$repoTag" "$namespace/$repoTag" ) &>> "$thisLog"; then echo "- failed 'docker tag'; see $thisLog" didFail=1