mirror of
https://github.com/ceph/ceph
synced 2025-01-31 23:44:10 +00:00
ef5a677870
Signed-off-by: Sage Weil <sage@redhat.com>
10 lines
184 B
Bash
Executable File
10 lines
184 B
Bash
Executable File
#!/bin/sh -x
|
|
git submodule update --init --recursive
|
|
if test -e build; then
|
|
echo 'build dir already exists; rm -rf build and re-run'
|
|
exit 1
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
cmake $@ ..
|