Merge pull request #395 from infosiftr/fix-push-logs

Fix log append in push logic
This commit is contained in:
Tianon Gravi 2015-01-13 15:48:07 -07:00
commit a8719d577b
1 changed files with 1 additions and 1 deletions

View File

@ -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