Skip to content

Commit

Permalink
Merge pull request ceph#37290 from tchaikov/wip-run-make-check
Browse files Browse the repository at this point in the history
run-make-check.sh: fix syntax error

Reviewed-by: Patrick Donnelly <[email protected]>
Reviewed-by: Neha Ojha <[email protected]>
  • Loading branch information
tchaikov authored Sep 23, 2020
2 parents 9899c6c + 77cc91a commit 8fd1bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-make-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 8fd1bd4

Please sign in to comment.