From 82d14238ae84cdec0b5b26884b016d7c283537e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Thu, 5 Sep 2024 09:38:03 +0200 Subject: [PATCH] Build script --- ci/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build.sh b/ci/build.sh index bee8f057a7..41d13cf265 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -11,10 +11,10 @@ SRC=${SRC:-${PWD}} OS=$(uname) CMAKE_BACKTRACE="" -if [[ "$OS" == 'Linux' ]]; then +if [[ ${OS} == 'Linux' ]]; then CMAKE_BACKTRACE="-DNANO_STACKTRACE_BACKTRACE=ON" - if [[ "$COMPILER" == 'clang' ]]; then + if [[ ${COMPILER:-} == 'clang' ]]; then CMAKE_BACKTRACE="${CMAKE_BACKTRACE} -DNANO_BACKTRACE_INCLUDE=" fi fi