Skip to content

Commit

Permalink
tools enhanced log/error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jun 8, 2024
1 parent 7bb88b6 commit 3898ae7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/qtbuild-qmysql-driver.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,14 @@ function Test-QtSourcesInstalled {
# Check whether the MySQL Server is installed
function Test-MySQLServerInstalled
{
Write-Progress "Testing whether MySQL Server is installed"
Write-Progress "Testing whether MySQL Server $MySQLVersion is installed"

if (Test-Path $Script:MySqlServerPath) {
return
}

Write-ExitError "The MySQL Server is not installed in the '$Script:MySqlServerPath' folder."
Write-ExitError ("The MySQL Server $MySQLVersion is not installed " +
"in the '$Script:MySqlServerPath' folder.")
}

# Remove $QtVersion build folder if the $CleanBuild was passed
Expand Down

0 comments on commit 3898ae7

Please sign in to comment.