mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
build: fixed string comparsion
This commit is contained in:
parent
d35a185079
commit
d7e03f9cde
1 changed files with 2 additions and 2 deletions
4
build.sh
4
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue