aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrett Koonce2014-07-20 11:48:08 -0700
committerBrett Koonce2014-07-20 21:59:12 -0700
commit36768629afefb934286ecbc3ce624baf50b21631 (patch)
tree2678353360746d0fac89e08759f53c5507b11d60 /Library/Formula
parentffacf7c962b8cf9c70bf9059c4146c8ef5c7632b (diff)
downloadhomebrew-36768629afefb934286ecbc3ce624baf50b21631.tar.bz2
etcdctl 0.4.5
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/etcdctl.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/etcdctl.rb b/Library/Formula/etcdctl.rb
index 8277cd61d..60818e489 100644
--- a/Library/Formula/etcdctl.rb
+++ b/Library/Formula/etcdctl.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Etcdctl < Formula
- homepage 'https://github.com/coreos/etcdctl'
- url 'https://github.com/coreos/etcdctl/archive/v0.4.4.tar.gz'
- sha1 '44c88abdd40ff53fd8bb64f41936806b854936fe'
- head 'https://github.com/coreos/etcdctl.git'
+ homepage "https://github.com/coreos/etcdctl"
+ url "https://github.com/coreos/etcdctl/archive/v0.4.5.tar.gz"
+ sha1 "698704fa04d9308552e42ae7d2bd4ff15c193255"
+ head "https://github.com/coreos/etcdctl.git"
bottle do
sha1 "ee0471621da897916e0129edc72a3e427fe3a5c8" => :mavericks
@@ -12,11 +12,11 @@ class Etcdctl < Formula
sha1 "b3191d68fb77a1f6930d4e35ea0d83f7bf87423e" => :lion
end
- depends_on 'go' => :build
+ depends_on "go" => :build
def install
- ENV['GOPATH'] = buildpath
+ ENV["GOPATH"] = buildpath
system "./build"
- bin.install 'bin/etcdctl'
+ bin.install "bin/etcdctl"
end
end