diff options
| -rw-r--r-- | installer/mainwindow.cpp | 2 |
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()); } } |
