Browse Source

update build instructions

tags/v2.0.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
add4249fd2
1 changed files with 1 additions and 13 deletions
  1. 1
    13
      README.md

+ 1
- 13
README.md View File

@@ -74,19 +74,7 @@ The `stable` branch contains the latest release. You can run this for a producti
74 74
 
75 75
 #### Building
76 76
 
77
-You'll need an [up-to-date distribution of the Go language for your OS and architecture](https://golang.org/dl/). You'll also need to set up a [Go workspace](https://golang.org/doc/code.html). Typically, this is just a directory `~/go`, with the `GOPATH` environment variable exported to its path with `export GOPATH=~/go`.
78
-
79
-Clone the repository where `go` expects it to be and then run `make`, i.e.,
80
-
81
-```bash
82
-mkdir -p ${GOPATH}/src/github.com/oragono
83
-cd ${GOPATH}/src/github.com/oragono
84
-git clone https://github.com/oragono/oragono
85
-cd oragono
86
-# check out the appropriate branch if necessary
87
-# now, this will install a development copy of oragono at ${GOPATH}/bin/oragono:
88
-make
89
-````
77
+You'll need an [up-to-date distribution of the Go language for your OS and architecture](https://golang.org/dl/). Once you have that, just clone the repository and run `make build`. If everything goes well, you should now have an executable named `oragono` in the base directory of the project.
90 78
 
91 79
 ## Configuration
92 80
 

Loading…
Cancel
Save