Fix: missing ; in if
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 21:41:33 +0000 (16:41 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 21:41:33 +0000 (16:41 -0500)
lttng-ust/lttng-ust-master.sh
userspace-rcu/liburcu-master.sh

index be2f31e7da51da382098e1bd154f0d5ccbd3c621..e20fa0fe2d2a58f0c49b2151503fc84eb0e15ce6 100755 (executable)
@@ -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
index 7bccb9e6a2ad7e645ce8f490b53afc433f087905..20da6f9d29d467c707929b7256feb5b7079c758d 100755 (executable)
@@ -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
This page took 0.024139 seconds and 4 git commands to generate.