From de00b3afb71b33eddb74c45964f3605a2fae9b27 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 22 Oct 2016 22:28:09 +0200 Subject: [PATCH] Fix missing "'" --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 01041fa..d50b596 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 + "'"; // +"' '" + appImagePath + "'"; int ret = system(appImageCommand.toUtf8().constData()); return WEXITSTATUS(ret); }