From 2d15ecc14e0f563d4d778b5de7cbc3d9429493fc Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Fri, 15 Dec 2023 08:38:51 -0400 Subject: [PATCH] chore: update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 249c0eb..04f9ad5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ This project is used in https://github.com/waku-org/go-zerokit-rln to bypass the 500mb limit for go modules + + +# How to build ``` git clone https://github.com/waku-org/go-zerokit-rln_apple cd go-zerokit-rln_apple @@ -6,3 +9,17 @@ git submodule init git submodule update --recursive make ``` + +# Updating zerokit +```bash +export ZEROKIT_COMMIT=master # Use a commit, branch or tag +cd zerokit +git pull +git checkout ${ZEROKIT_COMMIT} +cd .. +make +git add zerokit +git add libs/*/librln.a +git commit -m "chore: bump zerokit" +git push +```