Update readme to new targets.

This commit is contained in:
Laramie Leavitt
2016-03-03 11:12:25 -08:00
parent 2c27d0f51d
commit 78f4f71743
2 changed files with 5 additions and 3 deletions

View File

@ -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
```

View File

@ -6,5 +6,5 @@ import (
)
func main() {
fmt.Println("Hello", remote.World())
fmt.Println("Hello ", remote.World())
}