From 78f4f7174330dd9fc22f4790d47129f70443a8bc Mon Sep 17 00:00:00 2001 From: Laramie Leavitt Date: Thu, 3 Mar 2016 11:12:25 -0800 Subject: [PATCH] Update readme to new targets. --- README.md | 6 ++++-- remote.go | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4877e5b..4f22bc9 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,11 @@ This requires bazel release > `bazel-0.20`. ``` $ bazel run :hello +$ bazel run :local $ bazel run :remote $ bazel run :bare -$ bazel run :subbare -$ bazel run :subremote + +$ bazel run //submodule:bare +$ bazel run //submodule:remote ``` diff --git a/remote.go b/remote.go index 20230e1..0b7c5db 100644 --- a/remote.go +++ b/remote.go @@ -6,5 +6,5 @@ import ( ) func main() { - fmt.Println("Hello", remote.World()) + fmt.Println("Hello ", remote.World()) }