fix windows install process

This commit is contained in:
danteruiz 2019-10-29 13:45:28 -07:00
parent 761ca1c2f5
commit 3f110d2035
4 changed files with 11 additions and 7 deletions

View file

@ -77,7 +77,7 @@ bool swapLaunchers(const QString& oldLauncherPath, const QString& newLauncherPat
void cleanLogFile() {
QDir launcherDirectory = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
QDir launcherDirectory = PathUtils::getLogsDirectory();
launcherDirectory.mkpath(launcherDirectory.absolutePath());
QString filename = launcherDirectory.absoluteFilePath("Log.txt");
QString tmpFilename = launcherDirectory.absoluteFilePath("Log-last.txt");

View file

@ -15,7 +15,7 @@
#include <QFile>
#include <QDebug>
LauncherInstaller::LauncherInstaller(const QString& applicationFilePath) {
LauncherInstaller::LauncherInstaller() {
_launcherInstallDir = PathUtils::getLauncherDirectory();
_launcherApplicationsDir = PathUtils::getApplicationsDirectory();
qDebug() << "Launcher install dir: " << _launcherInstallDir.absolutePath();
@ -23,7 +23,10 @@ LauncherInstaller::LauncherInstaller(const QString& applicationFilePath) {
_launcherInstallDir.mkpath(_launcherInstallDir.absolutePath());
_launcherApplicationsDir.mkpath(_launcherApplicationsDir.absolutePath());
QFileInfo fileInfo(applicationFilePath);
char appPath[MAX_PATH];
GetModuleFileNameA(NULL, appPath, MAX_PATH);
QString applicationRunningPath = appPath;
QFileInfo fileInfo(applicationRunningPath);
_launcherRunningFilePath = fileInfo.absoluteFilePath();
_launcherRunningDirPath = fileInfo.absoluteDir().absolutePath();
qDebug() << "Launcher running file path: " << _launcherRunningFilePath;
@ -44,11 +47,12 @@ void LauncherInstaller::install() {
bool didRemove = QFile::remove(oldLauncherPath);
qDebug() << "did remove file: " << didRemove;
}
qDebug() << "Current launcher location: " << _launcherRunningFilePath;
bool success = QFile::copy(_launcherRunningFilePath, oldLauncherPath);
if (success) {
qDebug() << "successful";
qDebug() << "Launcher installed: " << oldLauncherPath;
} else {
qDebug() << "not successful";
qDebug() << "Failed to install: " << oldLauncherPath;
}
deleteShortcuts();

View file

@ -3,7 +3,7 @@
#include <QDir>
class LauncherInstaller {
public:
LauncherInstaller(const QString& applicationFilePath);
LauncherInstaller();
~LauncherInstaller() = default;
void install();

View file

@ -64,7 +64,7 @@ int main(int argc, char *argv[]) {
}
#ifdef Q_OS_WIN
LauncherInstaller launcherInstaller(argv[0]);
LauncherInstaller launcherInstaller;
if (options->contains("--uninstall") || options->contains("--resumeUninstall")) {
launcherInstaller.uninstall();
return 0;