Browse Source

For now, use -n option for appimagetool, closes #71

master
probonopd 8 years ago
committed by GitHub
parent
commit
8eef3f66be
  1. 2
      shared/shared.cpp

2
shared/shared.cpp

@ -1261,7 +1261,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
int createAppImage(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()); int ret = system(appImageCommand.toUtf8().constData());
LogNormal() << "ret" << ret; LogNormal() << "ret" << ret;
LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret); LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);

Loading…
Cancel
Save