aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStian Eikeland2014-02-08 13:48:03 +0100
committerMike McQuaid2014-02-08 13:33:30 +0000
commit77674cd8777d0c3e6ba74a5dcd413da76ab9c2bc (patch)
tree80ef6e532d5f699f7cdd02da6e95e6c6c04bd07a /Library
parentbe2966d2decaa5e2eadf69fa3008e6db84197c68 (diff)
downloadhomebrew-77674cd8777d0c3e6ba74a5dcd413da76ab9c2bc.tar.bz2
etcd v0.3.0
Closes #26518. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/etcd.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/etcd.rb b/Library/Formula/etcd.rb
index 6064d3163..9a29c5f92 100644
--- a/Library/Formula/etcd.rb
+++ b/Library/Formula/etcd.rb
@@ -2,8 +2,8 @@ require 'formula'
class Etcd < Formula
homepage 'https://github.com/coreos/etcd'
- url 'https://github.com/coreos/etcd/archive/v0.2.0.tar.gz'
- sha1 'c18bfe533a5c180012188e4039b740b9564894ce'
+ url 'https://github.com/coreos/etcd/archive/v0.3.0.tar.gz'
+ sha1 '0f191070268f7c87ca044ad23179995b9290e3c0'
head 'https://github.com/coreos/etcd.git'
depends_on 'go' => :build
@@ -11,6 +11,6 @@ class Etcd < Formula
def install
ENV['GOPATH'] = buildpath
system "./build"
- bin.install 'etcd'
+ bin.install 'bin/etcd'
end
end