From d7e03f9cdeac0415a5df7c16ae5a25328d0fe458 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Wed, 19 Oct 2016 15:42:26 +0300 Subject: [PATCH] build: fixed string comparsion --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 8d2aebc1..6ddcee10 100755 --- a/build.sh +++ b/build.sh @@ -17,7 +17,7 @@ fi if [ ! -d build ]; then mkdir build; fi -if [ $BUILD_TYPE == "Release" ]; then +if [ "$BUILD_TYPE" == "Release" ]; then CONFIG="CONFIG+=release"; else CONFIG="CONFIG+=debug" @@ -35,6 +35,6 @@ fi cd build qmake ../monero-core.pro "$CONFIG" make -make deploy +# make deploy popd