We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f43f6 commit c21b171Copy full SHA for c21b171
linuxdeployqt/main.cpp
@@ -117,7 +117,7 @@ int main(int argc, char **argv)
117
QDirIterator it2(directoryToBeSearched, QDirIterator::Subdirectories);
118
while (it2.hasNext()) {
119
it2.next();
120
- if((it2.fileName() == desktopExecEntry) && (it.fileInfo().isFile()) && (it2.fileInfo().isExecutable())){
+ if((it2.fileName() == desktopExecEntry) && (it2.fileInfo().isFile()) && (it2.fileInfo().isExecutable())){
121
qDebug() << "Found binary from desktop file:" << it2.fileInfo().canonicalFilePath();
122
appBinaryPath = it2.fileInfo().absoluteFilePath();
123
break;
0 commit comments