1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-13 05:43:53 -05:00

Import recent changes from ruby-build 20140420

This commit is contained in:
Yamashita Yuu
2014-05-01 13:13:40 +09:00
parent 0c81002220
commit 149a915770
3 changed files with 5 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ assert_output() {
assert_output_contains() {
local expected="$1"
echo "$output" | grep -F "$expected" >/dev/null || {
echo "$output" | $(type -p ggrep grep | head -1) -F "$expected" >/dev/null || {
{ echo "expected output to contain $expected"
echo "actual: $output"
} | flunk