Return correct exit code

This commit is contained in:
probonopd
2016-10-22 15:54:37 +02:00
parent 3415b30006
commit 82f99776e2
+1 -1
View File
@@ -1163,5 +1163,5 @@ int createAppImage(const QString &appDirPath)
}
QString appImageCommand = "AppImageAssistant '" + appDirPath +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData());
return ret;
return WEXITSTATUS(ret);
}