Update shared.cpp

This commit is contained in:
probonopd
2016-10-23 14:06:44 +02:00
committed by GitHub
parent 78905f35d1
commit 64178d00d5
+2
View File
@@ -1150,5 +1150,7 @@ int createAppImage(const QString &appDirPath)
{
QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData());
LogNormal() << "ret" << ret;
LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);
return WEXITSTATUS(ret);
}