Browse Source

no output from manifest, just exit code

tags/v1.4.4
Jonathan Cobb 3 years ago
parent
commit
269e57bbc4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/jenkins/push_docker

+ 1
- 1
bin/jenkins/push_docker View File

@@ -43,7 +43,7 @@ fi
echo "Found Bubble version ${VERSION}" echo "Found Bubble version ${VERSION}"


echo "Checking to see if this version already exists on dockerhub..." echo "Checking to see if this version already exists on dockerhub..."
if docker manifest inspect "getbubble/launcher:${VERSION}" 2> /dev/null ; then
if docker manifest inspect "getbubble/launcher:${VERSION}" > /dev/null 2> /dev/null ; then
echo "Version already exists on dockerhub, not re-publishing: ${VERSION}" echo "Version already exists on dockerhub, not re-publishing: ${VERSION}"
exit 0 exit 0
fi fi


Loading…
Cancel
Save