Browse Source

Update shared.cpp

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

2
shared/shared.cpp

@ -1150,5 +1150,7 @@ int createAppImage(const QString &appDirPath)
{
QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData());
LogNormal() << "ret" << ret;
LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);
return WEXITSTATUS(ret);
}

Loading…
Cancel
Save