aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Naberezny2014-05-19 19:41:24 -0700
committerAdam Vandenberg2014-05-19 20:08:50 -0700
commit33e95b26b5e298bcb06f4146a16c4dc14414c606 (patch)
tree3b0ce955ebdbd53c53c3550cfda0713869fe4456 /Library/Formula
parente278d2a9e88100aa3bdebf34cd1c68eead0da0b0 (diff)
downloadhomebrew-33e95b26b5e298bcb06f4146a16c4dc14414c606.tar.bz2
sparkey: use full path of executable
Closes #29412. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sparkey.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/sparkey.rb b/Library/Formula/sparkey.rb
index 67b01eb46..35e99412e 100644
--- a/Library/Formula/sparkey.rb
+++ b/Library/Formula/sparkey.rb
@@ -27,9 +27,9 @@ class Sparkey < Formula
end
test do
- system "sparkey createlog -c snappy test.spl"
- system "echo foo.bar | sparkey appendlog -d . test.spl"
- system "sparkey writehash test.spl"
- system "sparkey get test.spi foo | grep ^bar$"
+ system "#{bin}/sparkey createlog -c snappy test.spl"
+ system "echo foo.bar | #{bin}/sparkey appendlog -d . test.spl"
+ system "#{bin}/sparkey writehash test.spl"
+ system "#{bin}/sparkey get test.spi foo | grep ^bar$"
end
end