From a40db899c942582805d4b2fbc0c8c1e9e668f38e Mon Sep 17 00:00:00 2001 From: Laramie Leavitt Date: Thu, 3 Mar 2016 15:23:43 -0800 Subject: [PATCH] Update README to clarify the required submodule command. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4f22bc9..578a9cd 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,16 @@ a local binary (go_binary) and a local library (go_library). This requires bazel release > `bazel-0.20`. ``` +$ git clone https://github.com/laramiel/bazel-example-golang.git +$ cd bazel-example-golang + $ bazel run :hello $ bazel run :local $ bazel run :remote $ bazel run :bare +$ git submodule update --init --recursive $ bazel run //submodule:bare $ bazel run //submodule:remote ```