Browse Source

Revert "build: add build script and update readme"

This reverts commit 2866a7488ee2eb489405cd50a906e43f24044d8c.
Blake Mizerany 11 years ago
parent
commit
28102e536b
2 changed files with 4 additions and 28 deletions
  1. 4 11
      README.md
  2. 0 17
      build

+ 4 - 11
README.md

@@ -33,16 +33,7 @@ The latest release and setup instructions are available at [GitHub][github-relea
 
 ### Building
 
-You can build etcd using the standard go workflow:
-
-```sh
-export GOPATH=/path/to/gopath
-go get github.com/coreos/etcd
-```
-
-which will generate a binary at `$GOPATH/bin/etcd`
-
-Or build from source using the provided `build` script, which generates a binary at `./bin/etcd`:
+You can build etcd from source:
 
 ```sh
 git clone https://github.com/coreos/etcd
@@ -50,7 +41,9 @@ cd etcd
 ./build
 ```
 
-_NOTE_: etcd requires go 1.2+. Please check your installation with
+This will generate a binary called `./bin/etcd`.
+
+_NOTE_: you need go 1.2+. Please check your installation with
 
 ```
 go version

+ 0 - 17
build

@@ -1,17 +0,0 @@
-#!/bin/bash -e
-
-ORG_PATH="github.com/coreos"
-REPO_PATH="${ORG_PATH}/etcd"
-
-if [ ! -h gopath/src/${REPO_PATH} ]; then
-	mkdir -p gopath/src/${ORG_PATH}
-	ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
-fi
-
-export GOBIN=${PWD}/bin
-export GOPATH=${PWD}/gopath
-
-eval $(go env)
-
-echo "Building etcd"
-go install ${REPO_PATH}