Update shared.cpp

This commit is contained in:
probonopd
2016-10-22 23:24:44 +02:00
committed by GitHub
parent 2dc217f9f3
commit 120e6764bc
+1 -1
View File
@@ -1148,7 +1148,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
int createAppImage(const QString &appDirPath) int createAppImage(const QString &appDirPath)
{ {
QString appImageCommand = "appimagetool '" + appDirPath + "'"; // +"' '" + appImagePath + "'"; QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData()); int ret = system(appImageCommand.toUtf8().constData());
return WEXITSTATUS(ret); return WEXITSTATUS(ret);
} }