From 64178d00d5be16645f2aa89790d6938e47a498f8 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 23 Oct 2016 14:06:44 +0200 Subject: [PATCH] Update shared.cpp --- shared/shared.cpp | 2 ++ 1 file changed, 2 insertions(+) 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); }