Merge pull request #37290 from tchaikov/wip-run-make-check

run-make-check.sh: fix syntax error

Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
Reviewed-by: Neha Ojha <nojha@redhat.com>
This commit is contained in:
Kefu Chai 2020-09-23 09:36:45 +08:00 committed by GitHub
commit 8fd1bd4a29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ function main() {
cmake_opts+=" -DWITH_SEASTAR=ON"
fi
if [ $WITH_ZBD ]; then
cmake_opts += " -DWITH_ZBD=ON"
cmake_opts+=" -DWITH_ZBD=ON"
fi
configure $cmake_opts $@
build tests && echo "make check: successful build on $(git rev-parse HEAD)"