aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPoTe2014-06-02 12:03:43 -0300
committerJack Nagel2014-06-11 23:08:46 -0500
commit2afa40c1ecc0bbf07242d9e4493f49d1ab46757d (patch)
tree81e9e9cc7fd07784164574549b388aa8d29183d0 /Library
parent797e6c54dd183a1b42c159a1e90e55d1f097621a (diff)
downloadhomebrew-2afa40c1ecc0bbf07242d9e4493f49d1ab46757d.tar.bz2
gvp 0.0.4
Closes #29778. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gvp.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/gvp.rb b/Library/Formula/gvp.rb
index 5e1769bae..7339f7b04 100644
--- a/Library/Formula/gvp.rb
+++ b/Library/Formula/gvp.rb
@@ -2,8 +2,8 @@ require "formula"
class Gvp < Formula
homepage "https://github.com/pote/gvp"
- url "https://github.com/pote/gvp/archive/v0.0.3.tar.gz"
- sha1 "46826b8f3b83ba52d629549a5d486525cf633d6e"
+ url "https://github.com/pote/gvp/archive/0.0.4.tar.gz"
+ sha1 "39676c4dd1df4d099cf938122733fb5e2e24c0a0"
bottle do
cellar :any
@@ -21,7 +21,7 @@ class Gvp < Formula
assert Kernel.system("#{bin}/gvp init"), "`gvp init` exited with a non-zero status"
assert File.directory?(".godeps"), "`gvp init` did not create the .godeps directory"
assert_equal `#{bin}/gvp in 'echo $GOPATH' | grep -v '>> Local GOPATH set.'`.chomp, "#{testpath}/.godeps:#{testpath}", "`gvp in` did not change the GOPATH"
- assert_equal `#{bin}/gvp in 'echo $GOBIN' | grep -v '>> Local GOPATH set.'`.chomp, "#{testpath}/.godeps/bin:#{ENV["GOBIN"]}", "`gvp in` did not change the GOBIN"
+ assert_equal `#{bin}/gvp in 'echo $GOBIN' | grep -v '>> Local GOPATH set.'`.chomp, "#{testpath}/.godeps/bin", "`gvp in` did not change the GOBIN"
assert_equal `#{bin}/gvp in 'echo $PATH' | grep -v '>> Local GOPATH set.'`.chomp, "#{testpath}/.godeps/bin:#{ENV["PATH"]}", "`gvp in` did not change the PATH"
end
end