diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2020-08-24 19:20:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-24 19:20:10 (GMT) |
commit | e8bd270d35d5f0f9665b801e7ee8ea37c6dc1e37 (patch) | |
tree | 113719704832d7cca4423f8f78d8ddc3ebd44e2d | |
parent | e46fa0ff715227546daa91538d770ec57b8957f3 (diff) | |
parent | f803995b77379e420d3af21a25903da7c6bf5fbd (diff) | |
download | lz4-e8bd270d35d5f0f9665b801e7ee8ea37c6dc1e37.zip lz4-e8bd270d35d5f0f9665b801e7ee8ea37c6dc1e37.tar.gz lz4-e8bd270d35d5f0f9665b801e7ee8ea37c6dc1e37.tar.bz2 |
Merge pull request #907 from terrelln/travis
[CI][ossfuzz] Fix string equal
-rwxr-xr-x | ossfuzz/travisoss.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ossfuzz/travisoss.sh b/ossfuzz/travisoss.sh index 218f4d6..eae9a80 100755 --- a/ossfuzz/travisoss.sh +++ b/ossfuzz/travisoss.sh @@ -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 |