mirror of
https://github.com/ceph/ceph
synced 2025-03-06 16:28:28 +00:00
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 $@ ..
|