diff options
author | Dmitri Shuralyov <dmitshur@golang.org> | 2020-01-28 00:09:53 -0500 |
---|---|---|
committer | Dmitri Shuralyov <dmitshur@golang.org> | 2020-01-28 19:38:53 +0000 |
commit | 4fb2e4bc9eea484241efdc8fb02db42e42e0c90c (patch) | |
tree | 1c401a382a22dfa98852b2d27ee00ed81274a03b /README.md | |
parent | d1582acb251f89b73212cc0f727df3ab12c230b4 (diff) |
README: suggest go run instead of go build
Using go run does not leave a binary in the working directory.
This is possible now that golang.org/issue/22726 is resolved.
Change-Id: I63cd28bdb66673262fa45e56dc2e8ac39a0fa1a7
Reviewed-on: https://go-review.googlesource.com/c/blog/+/216657
Reviewed-by: Robert Griesemer <gri@golang.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ manually git clone the repository to \$GOPATH/src/golang.org/x/blog. To run the blog server locally: ``` -go build && ./blog -reload +go run . -reload ``` and then visit [http://localhost:8080/](http://localhost:8080) in your browser. |