From 8eef3f66be37a2416076c66874a7bffa5e5e9832 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 18 Feb 2017 11:50:33 +0100 Subject: [PATCH] For now, use -n option for appimagetool, closes #71 --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 8ce7b5a..14c5a40 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -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);