Skip to content

Commit

Permalink
Merge branch 'jc/test-say-color-avoid-echo-escape'
Browse files Browse the repository at this point in the history
Recent nd/wildmatch series was the first to reveal this ancient bug
in the test scaffolding.

* jc/test-say-color-avoid-echo-escape:
  test-lib: Fix say_color () not to interpret \a\b\c in the message
  • Loading branch information
Jeff King committed Oct 25, 2012
2 parents 70d1825 + 7bc0911 commit 4cd31a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ else
say_color() {
test -z "$1" && test -n "$quiet" && return
shift
echo "$*"
printf "%s\n" "$*"
}
fi

Expand Down

0 comments on commit 4cd31a6

Please sign in to comment.