mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* enh: move taosdemo in rpm and deb [TD-15642] * update taos-tools * enh: add build.sh to build TDengine and taosTools in one command [TD-15642] * fix: mismatched name
10 lines
251 B
Bash
Executable file
10 lines
251 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git submodule update --init --recursive > /dev/null || echo -e "failed to update git submodule"
|
|
|
|
if [ ! -d debug ]; then
|
|
mkdir debug || echo -e "failed to make directory for build"
|
|
fi
|
|
|
|
cd debug && cmake .. -DBUILD_TOOLS=true && make
|
|
|