Debug exit code

This commit is contained in:
probonopd
2016-10-23 14:19:41 +02:00
committed by GitHub
parent 5ebc979d11
commit 66e5386391
+1 -5
View File
@@ -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);
}