From f29bd2a31056b88b6df802f73f2d23bb44646b13 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 22 Sep 2016 10:53:30 -0400 Subject: [PATCH] ceph-setup: fix bash syntax error on conditional check Signed-off-by: Alfredo Deza --- ceph-setup/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5