Browse Source

Debugging exit code

master
probonopd 8 years ago
committed by GitHub
parent
commit
5ebc979d11
  1. 4
      linuxdeployqt/main.cpp

4
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);
}

Loading…
Cancel
Save