From 4fb2e4bc9eea484241efdc8fb02db42e42e0c90c Mon Sep 17 00:00:00 2001
From: Dmitri Shuralyov <dmitshur@golang.org>
Date: Tue, 28 Jan 2020 00:09:53 -0500
Subject: 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>
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'README.md')

diff --git a/README.md b/README.md
index e98ea0d..fcacf6d 100644
--- a/README.md
+++ b/README.md
@@ -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.
-- 
cgit v1.2.3