From bf1feb5835c189594c063b5ee9a6199df2ee2ca1 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Mon, 31 Jul 2023 20:34:45 +0100 Subject: [PATCH] Use bash as sh doesn't support the condition --- cmake/ci/build_sdrangel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/ci/build_sdrangel.sh b/cmake/ci/build_sdrangel.sh index 3f4494f6b..f78b32d1f 100755 --- a/cmake/ci/build_sdrangel.sh +++ b/cmake/ci/build_sdrangel.sh @@ -1,6 +1,6 @@ -#!/bin/sh -e +#!/bin/bash -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