diff --git a/resources/scripts/github-actions/build-windows.ps1 b/resources/scripts/github-actions/build-windows.ps1 index 851a2bc0b..a7db468af 100755 --- a/resources/scripts/github-actions/build-windows.ps1 +++ b/resources/scripts/github-actions/build-windows.ps1 @@ -2,7 +2,7 @@ $os = $args[0] $use_webengine = $args[1] $use_qt5 = $args[2] -not_use_webengine = "OFF" if use_webengine == "ON" else "ON" +$not_use_webengine = "OFF" if use_webengine == "ON" else "ON" echo "We are building for MS Windows." echo "OS: $os; Not lite: $use_webengine; Qt5: $use_qt5"