From 120e6764bcbeb17c54d91946d0c344d712607e9a Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 22 Oct 2016 23:24:44 +0200 Subject: [PATCH] Update shared.cpp --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index d50b596..d039657 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -1148,7 +1148,7 @@ bool checkAppImagePrerequisites(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()); return WEXITSTATUS(ret); }