TDengine/build.sh
Shuduo Sang 60e0f621d5
fix: script mismatched name (#12662)
* 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
2022-05-18 19:32:39 +08:00

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