mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Always copy installer if different, see #279
This commit is contained in:
parent
51cff76ce2
commit
0cb718f37b
1 changed files with 17 additions and 15 deletions
|
@ -713,23 +713,25 @@ void COperationDialog::copyInstaller()
|
||||||
QString oldInstallerFullPath = QApplication::applicationFilePath();
|
QString oldInstallerFullPath = QApplication::applicationFilePath();
|
||||||
QString newInstallerFullPath = config->getInstallationDirectory() + "/" + newInstallerFilename;
|
QString newInstallerFullPath = config->getInstallationDirectory() + "/" + newInstallerFilename;
|
||||||
|
|
||||||
if (!QFile::exists(newInstallerFullPath))
|
// always copy new installers
|
||||||
|
CFilesCopier copier(this);
|
||||||
|
copier.setIncludeFilter(config->getInstallerRequiredFiles());
|
||||||
|
copier.addFile(oldInstallerFullPath);
|
||||||
|
copier.setSourceDirectory(config->getSrcServerDirectory().isEmpty() ? QApplication::applicationDirPath():config->getSrcServerDirectory());
|
||||||
|
copier.setDestinationDirectory(config->getInstallationDirectory());
|
||||||
|
copier.exec();
|
||||||
|
|
||||||
|
// copied file
|
||||||
|
oldInstallerFullPath = config->getInstallationDirectory() + "/" + QFileInfo(oldInstallerFullPath).fileName();
|
||||||
|
|
||||||
|
// rename old filename if different
|
||||||
|
if (oldInstallerFullPath != newInstallerFullPath)
|
||||||
{
|
{
|
||||||
CFilesCopier copier(this);
|
// delete previous installer
|
||||||
copier.setIncludeFilter(config->getInstallerRequiredFiles());
|
QFile::remove(newInstallerFullPath);
|
||||||
copier.addFile(oldInstallerFullPath);
|
|
||||||
copier.setSourceDirectory(config->getSrcServerDirectory().isEmpty() ? QApplication::applicationDirPath():config->getSrcServerDirectory());
|
|
||||||
copier.setDestinationDirectory(config->getInstallationDirectory());
|
|
||||||
copier.exec();
|
|
||||||
|
|
||||||
// copied file
|
// rename new installer with final name
|
||||||
oldInstallerFullPath = config->getInstallationDirectory() + "/" + QFileInfo(oldInstallerFullPath).fileName();
|
QFile::rename(oldInstallerFullPath, newInstallerFullPath);
|
||||||
|
|
||||||
// rename old filename if different
|
|
||||||
if (oldInstallerFullPath != newInstallerFullPath)
|
|
||||||
{
|
|
||||||
QFile::rename(oldInstallerFullPath, newInstallerFullPath);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// create menu directory if defined
|
// create menu directory if defined
|
||||||
|
|
Loading…
Reference in a new issue