aboutsummaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
Diffstat (limited to 'installer')
-rw-r--r--installer/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/mainwindow.cpp b/installer/mainwindow.cpp
index e66e273..8acd8eb 100644
--- a/installer/mainwindow.cpp
+++ b/installer/mainwindow.cpp
@@ -214,7 +214,7 @@ void MainWindow::on_installButton_clicked()
while (iterator.hasNext()) {
iterator.next();
QFileInfo executable = iterator.fileInfo();
- if (executable.suffix() == "exe") {
+ if (executable.suffix() == "exe" && executable.baseName() != "uninstall") {
executableNames.append(executable.filePath());
}
}