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()) }