From: Jonathan Rajotte Date: Tue, 27 Jan 2015 21:41:33 +0000 (-0500) Subject: Fix: missing ; in if X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=4f686830fbc63736ef8fbe2cb43614a446c29096;p=lttng-ci.git Fix: missing ; in if --- diff --git a/lttng-ust/lttng-ust-master.sh b/lttng-ust/lttng-ust-master.sh index be2f31e..e20fa0f 100755 --- a/lttng-ust/lttng-ust-master.sh +++ b/lttng-ust/lttng-ust-master.sh @@ -102,6 +102,6 @@ make clean find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -if [ $build = "dist" ] then +if [ $build = "dist" ]; then rm -rf $BUILD_PATH fi diff --git a/userspace-rcu/liburcu-master.sh b/userspace-rcu/liburcu-master.sh index 7bccb9e..20da6f9 100755 --- a/userspace-rcu/liburcu-master.sh +++ b/userspace-rcu/liburcu-master.sh @@ -70,6 +70,6 @@ make clean find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -if [ $build = "dist" ] then +if [ $build = "dist" ]; then rm -rf $BUILD_PATH fi