[CI][ossfuzz] Fix string equal
authorNick Terrell <terrelln@fb.com>
Mon, 24 Aug 2020 18:22:57 +0000 (11:22 -0700)
committerNick Terrell <terrelln@fb.com>
Mon, 24 Aug 2020 18:23:04 +0000 (11:23 -0700)
ossfuzz/travisoss.sh

index 218f4d6..eae9a80 100755 (executable)
@@ -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