For now, use -n option for appimagetool, closes #71

This commit is contained in:
probonopd
2017-02-18 11:50:33 +01:00
committed by GitHub
parent 06401ef196
commit 8eef3f66be
+1 -1
View File
@@ -1261,7 +1261,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
int createAppImage(const QString &appDirPath)
{
QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose"; // +"' '" + appImagePath + "'";
QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose -n"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData());
LogNormal() << "ret" << ret;
LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);