1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04: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 #!/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 debuild -i -us -uc -b
else else
mkdir -p build; cd build mkdir -p build; cd build