diff options
| author | Mike Naberezny | 2014-05-22 11:19:22 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-22 12:19:16 -0700 |
| commit | 2e7a58593848b539705291036c28992b541883b8 (patch) | |
| tree | 74e220c7e80fc3803a0d8ef26c6b3cf65b484ef7 | |
| parent | 1899ed65bdec4bb2b86b309e6dda545489323277 (diff) | |
| download | homebrew-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.rb | 2 |
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 |
