Changed: If old installer doesn't return a version, overwrite it
This commit is contained in:
parent
5a06e81a76
commit
f5322b8e88
1 changed files with 3 additions and 0 deletions
|
@ -692,6 +692,9 @@ int CConfigFile::compareInstallersVersion() const
|
|||
|
||||
QString installedVersion = getVersionFromExecutable(installerDst);
|
||||
|
||||
// if unable to get version, copy it
|
||||
if (installedVersion.isEmpty()) return 1;
|
||||
|
||||
nlinfo("%s version is %s", Q2C(installerDst), Q2C(installedVersion));
|
||||
|
||||
QString newVersion = QApplication::applicationVersion();
|
||||
|
|
Loading…
Reference in a new issue