From 72a31383fcc9dfe11bc3fb620476631d106b83e9 Mon Sep 17 00:00:00 2001 From: jinhelin Date: Wed, 16 Mar 2022 11:40:48 +0800 Subject: [PATCH] Rename tics to tiflash. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1e171d8c5cb..df347db46ba 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Assume `$WORKSPACE` to be the directory under which the TiFlash repo is placed. ```bash cd $WORKSPACE -git clone --recursive https://github.com/pingcap/tics.git +git clone --recursive https://github.com/pingcap/tiflash.git ``` ### Prerequisites @@ -58,7 +58,7 @@ Or you can also use system-wise toolchain if you can install `clang/compiler-rt/ TiFlash Env can be created with the following commands (`docker` and `tar xz` are needed): ```bash -cd $WORKSPACE/tics/release-centos7-llvm/env +cd $WORKSPACE/tiflash/release-centos7-llvm/env make tiflash-env-$(uname -m).tar.xz ``` @@ -128,7 +128,7 @@ For Ninja: ```bash cd $BUILD -cmake $WORKSPACE/tics -Gninja +cmake $WORKSPACE/tiflash -Gninja ninja tiflash ``` @@ -136,7 +136,7 @@ For GNU Make: ```bash cd $BUILD -cmake $WORKSPACE/tics +cmake $WORKSPACE/tiflash make tiflash -j ``` @@ -249,6 +249,6 @@ Before submitting a pull request, please use [format-diff.py](format-diff.py) to > **NOTE**: It is required to use clang-format 12.0.0+. ``` -cd $WORKSPACE/tics +cd $WORKSPACE/tiflash python3 format-diff.py --diff_from `git merge-base ${TARGET_REMOTE_BRANCH} HEAD` ```