[walkthrough]: adjust instructions to clone athens on gopath (#593)

* [walkthrough]: adjust instructions to clone athens on gopath

* Update walkthrough.md
This commit is contained in:
Kent Rancourt
2018-08-30 16:27:22 -06:00
committed by Aaron Schlesinger
parent 3a76afb6a6
commit 992ee933eb
+4 -2
View File
@@ -58,7 +58,8 @@ Now run the Athens proxy in a background process:
**Bash**
```console
$ cd ..
$ mkdir -p $(go env GOPATH)/src/github.com/gomods
$ cd $(go env GOPATH)/src/github.com/gomods
$ git clone https://github.com/gomods/athens.git
$ cd athens
$ GO111MODULE=off go run ./cmd/proxy &
@@ -71,7 +72,8 @@ Note: [Building Athens Go Modules enabled is not yet supported](https://github.c
<!--
**PowerShell**
```console
$ cd ..
$ mkdir $(go env GOPATH)\src\github.com\gomods
$ cd $(go env GOPATH)\src\github.com\gomods
$ git clone https://github.com/gomods/athens.git
$ cd athens
$ start -NoNewWindow go "run .\cmd\proxy"