Replace submodule update with recursive clone

nikoargo 2018-10-30 16:47:40 -04:00
parent c3a872290c
commit b019533764

@ -13,9 +13,8 @@
Below are quick commands for the impatient. Detailed instructions can be found at [[Build]]. Below are quick commands for the impatient. Detailed instructions can be found at [[Build]].
```zsh ```zsh
git clone https://github.com/MaskRay/ccls --depth=1 git clone --depth=1 --recursive https://github.com/MaskRay/ccls
cd ccls cd ccls
git submodule update --init
cmake -H. -BRelease # This downloads prebuilt clang+llvm from releases.llvm.org cmake -H. -BRelease # This downloads prebuilt clang+llvm from releases.llvm.org
cmake --build Release cmake --build Release
``` ```