libsanitizer: use git clone --depth 1

Using depth == 1 it makes the cloning much faster.

libsanitizer/ChangeLog:

	* merge.sh: Use git clone --depth 1.
This commit is contained in:
Martin Liska 2022-11-15 14:18:27 +01:00
parent fe26b040ce
commit 3895318beb

View File

@ -6,7 +6,7 @@
get_upstream() {
rm -rf upstream
git clone https://github.com/llvm/llvm-project.git upstream
git clone --depth 1 https://github.com/llvm/llvm-project.git upstream
}
get_current_rev() {