summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/repocompare/repositorymanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/repocompare/repositorymanager.cpp b/tools/repocompare/repositorymanager.cpp
index 1e746b480..c27abb304 100644
--- a/tools/repocompare/repositorymanager.cpp
+++ b/tools/repocompare/repositorymanager.cpp
@@ -162,7 +162,7 @@ bool RepositoryManager::updateRequired(const QString &componentName, QString *me
const ComponentDescription &productionDescription = productionMap.value(componentName);
const ComponentDescription &updateDescription = updateMap.value(componentName);
if (createVersionNumber(productionDescription.version) < createVersionNumber(updateDescription.version)) {
- if (productionDescription.releaseDate >= updateDescription.releaseDate) {
+ if (productionDescription.releaseDate > updateDescription.releaseDate) {
if (message)
*message = QString::fromLatin1("Error: Component %1 has wrong release date %2").arg(componentName).arg(updateDescription.releaseDate.toString());
return false;