From 66e5386391cfa739fea4d90e56a1331826c5454d Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 23 Oct 2016 14:19:41 +0200 Subject: [PATCH] Debug exit code --- linuxdeployqt/main.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/linuxdeployqt/main.cpp b/linuxdeployqt/main.cpp index 625aa43..a6f78db 100644 --- a/linuxdeployqt/main.cpp +++ b/linuxdeployqt/main.cpp @@ -210,11 +210,7 @@ int main(int argc, char **argv) if (appimage) { int result = createAppImage(appDirPath); LogDebug() << "result:" << result; - if(result =! 0){ - LogDebug() << "result != 0:" << result; - exit(result); - } + exit(result); } - LogDebug() << "exit(0);"; exit(0); }