From: Andrew Schoen Date: Tue, 27 Oct 2015 17:19:20 +0000 (-0500) Subject: fix the echo statement to mention the FORCE flag X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=700b836d492cfc5a77c3db98e4c4eacc951e1b7a;p=ceph-build.git fix the echo statement to mention the FORCE flag Signed-off-by: Andrew Schoen --- diff --git a/ceph-build-next/build/build_deb b/ceph-build-next/build/build_deb index 3a45f647..172fe5c7 100644 --- a/ceph-build-next/build/build_deb +++ b/ceph-build-next/build/build_deb @@ -15,7 +15,7 @@ chacractl exists binaries/${chacra_endpoint} # if the binary already exists in chacra, do not rebuild if [ $? -e 0 ] && [ "$FORCE" = false ] ; then - echo "The endpoint at ${chacra_endpoint} already exists, Exiting..." + echo "The endpoint at ${chacra_endpoint} already exists and FORCE was not set, Exiting..." exit 0 fi diff --git a/ceph-build-next/build/build_rpm b/ceph-build-next/build/build_rpm index 148c73d2..15940fe1 100644 --- a/ceph-build-next/build/build_rpm +++ b/ceph-build-next/build/build_rpm @@ -62,7 +62,7 @@ chacractl exists binaries/${chacra_baseurl}/${ARCH} # if the binary already exists in chacra, do not rebuild if [ $? -e 0 ] && [ "$FORCE" = false ]; then - echo "The endpoint at ${chacra_baseurl}/${ARCH} already exists, Exiting..." + echo "The endpoint at ${chacra_baseurl}/${ARCH} already exists and FORCE was not set, Exiting..." exit 0 fi