We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 992d7af commit 5195ec1Copy full SHA for 5195ec1
1 file changed
tools/linuxdeployqt/main.cpp
@@ -381,7 +381,9 @@ int main(int argc, char **argv)
381
if(appRun.exists()){
382
qDebug() << "Keeping existing AppRun";
383
} else {
384
- QFile::link(relativeBinPath, appDirPath + "/AppRun");
+ if (!QFile::link(relativeBinPath, appDirPath + "/AppRun")) {
385
+ LogError() << "Could not create AppRun link";
386
+ }
387
}
388
389
/* Copy the desktop file in place, into the top level of the AppDir */
0 commit comments