1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

Use == instead of = for comparison

This commit is contained in:
Jon Beniston 2023-07-31 14:19:00 +01:00
parent e7b0921c50
commit e9c258f8c2

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