diff --git a/shared/shared.cpp b/shared/shared.cpp index d039657..6653199 100644 --- a/shared/shared.cpp +++ b/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); }