diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-31 08:58:48 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-31 08:58:48 +0000 |
commit | 4df36f9f06132a926a211590c8e546a5086961d9 (patch) | |
tree | da64a524f55f69bb9f2d376fb0d589035ae0689f | |
parent | 62ae2d1d4538d682c27971e4937d01eca9896929 (diff) |
fix shell syntax in script
-rwxr-xr-x | script/spec-all-pairs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/spec-all-pairs b/script/spec-all-pairs index 338f56147..25ca4c32a 100755 --- a/script/spec-all-pairs +++ b/script/spec-all-pairs @@ -40,8 +40,8 @@ pairs_from_stdin() { while read line do case "$line" in - \*\ FAILED:\ *) - spec/*.rb spec/$.rb) + \*\ FAILED:\ *|\ + spec/*.rb\ spec/$.rb) line=${line#\* FAILED: } if ! test_pair $line then |