From: Alfredo Deza Date: Thu, 22 Sep 2016 14:53:30 +0000 (-0400) Subject: ceph-setup: fix bash syntax error on conditional check X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f29bd2a31056b88b6df802f73f2d23bb44646b13;p=ceph-build.git ceph-setup: fix bash syntax error on conditional check Signed-off-by: Alfredo Deza --- diff --git a/ceph-setup/build/build b/ceph-setup/build/build index c43885c1..2eb299cd 100644 --- a/ceph-setup/build/build +++ b/ceph-setup/build/build @@ -54,7 +54,7 @@ else fi # make-dist does not exist for autotools builds -if [ ! -x make-dist ] +if [ ! -x make-dist ]; then echo "Using autotools build system" echo "Running autogen.sh ..." ./autogen.sh