Changed: Check modification time of Installer to determine if it must be copied again, see #279

--HG--
branch : develop
This commit is contained in:
kervala 2016-08-14 13:29:27 +02:00
parent 78efe0a895
commit 2bc1e26868

View file

@ -911,8 +911,20 @@ OperationStep CConfigFile::getInstallNextStep() const
}
}
QString installerDst = getInstallationDirectory() + "/" + server.installerFilename;
// if installer not found in installation directory, extract it from BNP
if (!QFile::exists(getInstallationDirectory() + "/" + server.installerFilename))
if (QFile::exists(installerDst))
{
QString installerSrc = getInstallerCurrentFilePath();
// copy it too if destination one if older than new one
uint64 srcDate = QFileInfo(installerSrc).lastModified().toTime_t();
uint64 dstDate = QFileInfo(installerDst).lastModified().toTime_t();
if (srcDate > dstDate) return CopyInstaller;
}
else
{
return CopyInstaller;
}