scripts/cargo: fix debug build check

This commit is contained in:
Jordan Petridis 2019-04-06 21:33:42 +03:00
parent 9d0d20afbd
commit b290441956
No known key found for this signature in database
GPG Key ID: E8523968931763BE

View File

@ -10,7 +10,7 @@ export PROFILE="$4"
TARGET=debug
ARGS=()
if test "$PROFILE" != "Devel"; then
if test "$PROFILE" != ".Devel"; then
echo "RELEASE MODE"
ARGS+=('--release')
TARGET=release