From b3e6e91f25e72e149e26a2eaedab2511ea816729 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 12 Jan 2019 14:14:46 +0000 Subject: [PATCH] appimagetool not --verbose --- tools/linuxdeployqt/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index 4c0919a..5d847da 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1748,7 +1748,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath) int createAppImage(const QString &appDirPath) { - QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose -n -g"; // +"' '" + appImagePath + "'"; + QString appImageCommand = "appimagetool '" + appDirPath + "' -n -g"; // +"' '" + appImagePath + "'"; int ret = system(appImageCommand.toUtf8().constData()); LogNormal() << "ret" << ret; LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);