aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Naberezny2014-05-22 11:19:22 -0700
committerAdam Vandenberg2014-05-22 12:19:16 -0700
commit2e7a58593848b539705291036c28992b541883b8 (patch)
tree74e220c7e80fc3803a0d8ef26c6b3cf65b484ef7
parent1899ed65bdec4bb2b86b309e6dda545489323277 (diff)
downloadhomebrew-2e7a58593848b539705291036c28992b541883b8.tar.bz2
fzf: use full path of executable
Closes #29498. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/fzf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/fzf.rb b/Library/Formula/fzf.rb
index e10d64377..2b6d6d618 100644
--- a/Library/Formula/fzf.rb
+++ b/Library/Formula/fzf.rb
@@ -22,6 +22,6 @@ class Fzf < Formula
test do
(testpath/"list").write %w[hello world].join($/)
- `cat #{testpath}/list | fzf -f wld`.chomp == "world"
+ assert_equal "world", `cat #{testpath}/list | #{bin}/fzf -f wld`.chomp
end
end