From 5ebc979d118f4b1716e038d8bea09e834c5ce267 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 23 Oct 2016 14:14:33 +0200 Subject: [PATCH] Debugging exit code --- linuxdeployqt/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/linuxdeployqt/main.cpp b/linuxdeployqt/main.cpp index 5adea1b..625aa43 100644 --- a/linuxdeployqt/main.cpp +++ b/linuxdeployqt/main.cpp @@ -209,10 +209,12 @@ int main(int argc, char **argv) if (appimage) { int result = createAppImage(appDirPath); + LogDebug() << "result:" << result; if(result =! 0){ + LogDebug() << "result != 0:" << result; exit(result); } } + LogDebug() << "exit(0);"; exit(0); } -