Skip to content

Commit

Permalink
Don't stop deploy when a library can't be found.
Browse files Browse the repository at this point in the history
  • Loading branch information
hipersayanX committed May 27, 2017
1 parent e6b42aa commit ba1346e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,13 @@ LddInfo Deploy::findDependencyInfo(const QString &binaryPath)
if (outputLine.contains("not found")){
LogError() << "ldd outputLine:" << outputLine.replace("\t", "");
LogError() << "Please ensure that all libraries can be found by ldd. Aborting.";
exit(1);

/* FIXME: Can't continue the deploy process because exiting, making
* the app crash.
* This situation must be handled in a different way, or simply
* ignore those "not found" lines.
*/
// exit(1);
}
}

Expand Down

0 comments on commit ba1346e

Please sign in to comment.