mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 15:05:31 +08:00
9 lines
119 B
Bash
Executable File
9 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -d "./build" ]]; then
|
|
rm -rf build
|
|
fi
|
|
|
|
mkdir build && cd build
|
|
cmake ..
|
|
make -j8 && make install
|