9 lines
166 B
Bash
Executable File
9 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git pull
|
|
|
|
(cd fetch-indexes-cpp &&
|
|
rm -rf build; mkdir build && (cd build &&
|
|
cmake .. && make -j$(nproc)) &&
|
|
mv build/fetch-indexes ../ && rm -rf build)
|