From: Li Xi Date: Thu, 29 Jul 2021 00:59:11 +0000 (+0800) Subject: EX-3562 build: failed to find lipe dir X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=172393faa0dcc64e30768b74625180c09b7700a2;p=fs%2Flustre-release.git EX-3562 build: failed to find lipe dir A dollar sign is missing in the script of contrib/lbuild/lbuild so lipe dir is not able to be found. Test-Parameters: trivial Change-Id: I3de918d7e8d11123e5ee8672b089220587ed6756 Signed-off-by: Li Xi Reviewed-on: https://review.whamcloud.com/44418 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Minh Diep Reviewed-by: Andreas Dilger --- diff --git a/contrib/lbuild/lbuild b/contrib/lbuild/lbuild index efa69c5..7c9a816 100755 --- a/contrib/lbuild/lbuild +++ b/contrib/lbuild/lbuild @@ -919,7 +919,7 @@ build_lipe() { # lipe exist in one uppper directory if [[ -d ${TOPDIR}/../lipe ]]; then pushd ${TOPDIR}/../lipe > /dev/null - elif [[ -d {TOPDIR}/lipe ]]; then + elif [[ -d ${TOPDIR}/lipe ]]; then pushd ${TOPDIR}/lipe > /dev/null else fatal 1 "Can not find lipe source"