Use == instead of = for comparison

This commit is contained in:
Jon Beniston 2023-07-31 14:19:00 +01:00
parent e7b0921c50
commit e9c258f8c2
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -e
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ ${CI_LINUX} = true ]; then
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ ${CI_LINUX} == true ]; then
debuild -i -us -uc -b
else
mkdir -p build; cd build