From c46fbe47fe5f84987f27c0cc766664050b19cc25 Mon Sep 17 00:00:00 2001 From: Angelo Capossele Date: Wed, 30 Oct 2024 17:23:22 +0000 Subject: [PATCH] WEB3-206: Add git submodule update --init to README (#139) add git submodule update --init to README --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2dc6cb2c..ed7f2a5c 100644 --- a/README.md +++ b/README.md @@ -73,13 +73,19 @@ Your new project consists of: ### Build the Code +- Update git submodules. + + ```sh + git submodule update --init + ``` + - Builds for zkVM program, the publisher app, and any other Rust code. ```sh cargo build ``` -- Build your Solidity smart contracts +- Build your Solidity smart contracts. > NOTE: `cargo build` needs to run first to generate the `ImageID.sol` contract.