Debugging exit code

This commit is contained in:
probonopd
2016-10-23 14:14:33 +02:00
committed by GitHub
parent 64178d00d5
commit 5ebc979d11
+3 -1
View File
@@ -209,10 +209,12 @@ int main(int argc, char **argv)
if (appimage) { if (appimage) {
int result = createAppImage(appDirPath); int result = createAppImage(appDirPath);
LogDebug() << "result:" << result;
if(result =! 0){ if(result =! 0){
LogDebug() << "result != 0:" << result;
exit(result); exit(result);
} }
} }
LogDebug() << "exit(0);";
exit(0); exit(0);
} }