Commit 73c8fe403a275c68b167bc5c735b5f9521cc5977
1 parent
c7578276
typo: fix accidental bashism
git-svn-id: svn+q:///qpdf/trunk@632 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
1 changed file
with
1 additions
and
1 deletions
qpdf/qtest/qpdf/diff-encrypted
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | lines=$(expr + $(diff $1 $2 | egrep '^[<>]' | egrep -v 'Date' | wc -l)) | 2 | lines=$(expr + $(diff $1 $2 | egrep '^[<>]' | egrep -v 'Date' | wc -l)) |
| 3 | -if [ "$lines" == "0" ]; then | 3 | +if [ "$lines" = "0" ]; then |
| 4 | echo okay | 4 | echo okay |
| 5 | else | 5 | else |
| 6 | diff -a -U 0 $1 $2 | 6 | diff -a -U 0 $1 $2 |