From 3258a5ff5fd38d35c85cb23ed35797c0e6e5e5f3 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 12 Nov 2022 19:34:26 +0700 Subject: [PATCH] build.sh : depth=1 in BoringSSL --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 2bfcd47..c713226 100644 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ rm -rf nginquic curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/main/packages.sh | bash mkdir nginquic && cd nginquic hg clone -b quic https://hg.nginx.org/nginx-quic -git clone https://github.com/google/boringssl +git clone --depth=1 https://github.com/google/boringssl cd boringssl mkdir build && cd build && cmake .. && make cd .. && cd ..