Skip to content

Commit

Permalink
use quotes when checking empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbmotta committed Apr 14, 2023
1 parent ee51a95 commit fd2cece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ doPrintConfiguration
if [[ ${LinkOption} == "dynamic" ]]; then

if [[ ${MartinosOption} == "true" ]]; then
if [[ -z ${Qt_ROOT_FOLDER} ]]; then
if [[ -z "${Qt_ROOT_FOLDER}" ]]; then
echo "You need to define the variable: Qt_ROOT_FOLDER. And make it"
echo "point to your Qt installation."
else
Expand Down

0 comments on commit fd2cece

Please sign in to comment.