Fix missing "'"

This commit is contained in:
probonopd
2016-10-22 22:28:09 +02:00
parent cc59cc81a9
commit de00b3afb7
+1 -1
View File
@@ -1148,7 +1148,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
int createAppImage(const QString &appDirPath) int createAppImage(const QString &appDirPath)
{ {
QString appImageCommand = "appimagetool '" + appDirPath; // +"' '" + appImagePath + "'"; QString appImageCommand = "appimagetool '" + appDirPath + "'"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData()); int ret = system(appImageCommand.toUtf8().constData());
return WEXITSTATUS(ret); return WEXITSTATUS(ret);
} }