Browse Source

Fix missing "'"

master
probonopd 8 years ago
parent
commit
de00b3afb7
  1. 2
      shared/shared.cpp

2
shared/shared.cpp

@ -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);
} }

Loading…
Cancel
Save