From e9c258f8c265c70e6aafb2052ea12791b78e0628 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Mon, 31 Jul 2023 14:19:00 +0100 Subject: [PATCH] Use == instead of = for comparison --- cmake/ci/build_sdrangel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/ci/build_sdrangel.sh b/cmake/ci/build_sdrangel.sh index 7cf263bcc..3f4494f6b 100755 --- a/cmake/ci/build_sdrangel.sh +++ b/cmake/ci/build_sdrangel.sh @@ -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