Merge pull request #907 from terrelln/travis

[CI][ossfuzz] Fix string equal
This commit is contained in:
Yann Collet 2020-08-24 12:20:10 -07:00 committed by GitHub
commit e8bd270d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ then
fi
# Modify the oss-fuzz Dockerfile so that we're checking out the current branch on travis.
if [ "x${TRAVIS_PULL_REQUEST}" -eq "xfalse" ]
if [ "x${TRAVIS_PULL_REQUEST}" = "xfalse" ]
then
sed -i "s@https://github.com/lz4/lz4.git@-b ${TRAVIS_BRANCH} https://github.com/lz4/lz4.git@" /tmp/ossfuzz/projects/lz4/Dockerfile
else