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:
parent
e7b0921c50
commit
e9c258f8c2
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user