Update .travis.yml

Fix string equality check
This commit is contained in:
Justin Ethier 2020-08-31 12:13:14 -04:00 committed by GitHub
parent a0e1c2a77c
commit 6d20e717e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ notifications:
email: false
before_install:
- |
if [ "$(uname)" -ne "FreeBSD" ]; then
if [ "$(uname)" != "FreeBSD" ]; then
sudo ln -s /usr/bin/make /usr/bin/gmake
fi
- |