From 241dd9805859a004efec7af6ce44eea904b3517b Mon Sep 17 00:00:00 2001 From: Pin <4590357+pwqw@users.noreply.github.com> Date: Sat, 6 Jan 2024 12:14:24 -0300 Subject: [PATCH] faster submodule update Submodules like `git` contain too much change history, which is not necessary to compile the program. Speeding up the setup significantly as well as saving space on the device is important. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d5a7c0f..27bd67bc 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ How to Build **Initialize Submodules** git submodule init - git submodule update + git submodule update --depth 1 **Build OpenSSL**