Merge pull request #395 from infosiftr/fix-push-logs
Fix log append in push logic
This commit is contained in:
commit
a8719d577b
|
|
@ -365,7 +365,7 @@ while [ "$#" -gt 0 ]; do
|
|||
fi
|
||||
if [ "$doPush" ]; then
|
||||
echo "Pushing $namespace/$repoTag..."
|
||||
if ! "$docker" push "$namespace/$repoTag" &> "$thisLog" < /dev/null; then
|
||||
if ! "$docker" push "$namespace/$repoTag" &>> "$thisLog" < /dev/null; then
|
||||
echo >&2 "- $namespace/$repoTag failed to push; see $thisLog"
|
||||
fi
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue