From c1355578ee1e03115e63d6409ce1d292cb28c70d Mon Sep 17 00:00:00 2001 From: Dmitry Eremin Date: Tue, 16 Jul 2013 23:33:07 +0400 Subject: [PATCH] LU-1199 lbuild: Syntax fix of previous commit A Change-Id: I68636f599937cec2ea9298a395df0c875762215e introduced an error: ./lbuild: line 265: [: argument expected Just fix this typo. Signed-off-by: Dmitry Eremin Change-Id: Ieedfbd38f7f43684516ec3be00451984b57df4b8 Reviewed-on: http://review.whamcloud.com/7009 Reviewed-by: Christopher J. Morrone Tested-by: Hudson Tested-by: Maloo Reviewed-by: Oleg Drokin --- contrib/lbuild/lbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lbuild/lbuild b/contrib/lbuild/lbuild index 8af01e0..f4a4099 100755 --- a/contrib/lbuild/lbuild +++ b/contrib/lbuild/lbuild @@ -262,7 +262,7 @@ canon_path() { check_options() { - if [ -z "$LUSTRE" -o ! -r "$LUSTRE"]; then + if [ -z "$LUSTRE" -o ! -r "$LUSTRE" ]; then usage 1 "Could not find Lustre source tarball '$LUSTRE'." fi -- 1.8.3.1