Skip to content

Commit

Permalink
Updated build instructions post-Etsy
Browse files Browse the repository at this point in the history
The git repo path has changed now that Hound is its own org.

I also added an example build session for folks like me who
don't have other Go projects, and included the "go get" step
in these new build instructions, without which I wasn't able
to build.
  • Loading branch information
jacobrose authored and Kelly Norton committed Jun 17, 2019
1 parent 547eb48 commit 8b11bdf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,22 @@ Go tools work accordingly. See [Setting GOPATH](https://github.com/golang/go/wik
up your Go workspace. With a `GOPATH` set, the following commands will build hound locally.

```
<<<<<<< HEAD
git clone https://github.com/hound-search/hound.git ${GOPATH}/src/github.com/hound-search/hound
cd ${GOPATH}/src/github.com/hound-search/hound
=======
git clone https://github.com/hound-search/hound.git ${GOPATH}/src/github.com/etsy/hound
cd ${GOPATH}/src/github.com/etsy/hound
>>>>>>> Updated build instructions post-Etsy
make
```

If this is your only Go project, you can set your GOPATH just for Hound:
```
git clone https://github.com/hound-search/hound.git
cd hound
export GOPATH=`pwd`
go get github.com/etsy/hound/cmds/...
make
```

Expand Down

0 comments on commit 8b11bdf

Please sign in to comment.