Exit with error code if AppImage generation fails
This commit is contained in:
+2
-1
@@ -1110,7 +1110,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
|
||||
return true;
|
||||
}
|
||||
|
||||
void createAppImage(const QString &appDirPath)
|
||||
int createAppImage(const QString &appDirPath)
|
||||
{
|
||||
QString appImagePath = appDirPath + ".AppImage";
|
||||
|
||||
@@ -1129,4 +1129,5 @@ void createAppImage(const QString &appDirPath)
|
||||
}
|
||||
QString appImageCommand = "AppImageAssistant '" + appDirPath +"' '" + appImagePath + "'";
|
||||
int ret = system(appImageCommand.toUtf8().constData());
|
||||
return ret;
|
||||
}
|
||||
|
||||
+1
-1
@@ -120,7 +120,7 @@ void runStrip(const QString &binaryPath);
|
||||
void stripAppBinary(const QString &bundlePath);
|
||||
QString findAppBinary(const QString &appDirPath);
|
||||
QStringList findAppLibraries(const QString &appDirPath);
|
||||
void createAppImage(const QString &appBundlePath);
|
||||
int createAppImage(const QString &appBundlePath);
|
||||
bool checkAppImagePrerequisites(const QString &appBundlePath);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user