aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-01-23 22:23:44 -0600
committerJack Nagel2012-01-23 22:28:04 -0600
commit7fe3cc7b35200dda1212cdceeb3ceefd6051005f (patch)
treed8dc52bfa973a408089bae62152fb0bf3bbbcfbc /Library
parentd9a51561d52c45158eccef3c5baa4f4a442a4550 (diff)
downloadhomebrew-7fe3cc7b35200dda1212cdceeb3ceefd6051005f.tar.bz2
calabash: fix test invocation
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/calabash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/calabash.rb b/Library/Formula/calabash.rb
index 591a716d8..c0d90b208 100644
--- a/Library/Formula/calabash.rb
+++ b/Library/Formula/calabash.rb
@@ -23,6 +23,6 @@ class Calabash < Formula
def test
# This small XML pipeline (*.xpl) that comes with Calabash
# is basically its equivalent "Hello World" program.
- system "calabash #{self.prefix}/libexec/xpl/pipe.xpl"
+ system "#{bin}/calabash #{self.prefix}/libexec/xpl/pipe.xpl"
end
end