| 84 | } |
| 85 | |
| 86 | QString Deploy::codeString(int code) { |
| 87 | switch (code) { |
| 88 | case exitCodes::DeployError: { |
| 89 | return "The CQtDeployer fail to deploy application."; |
| 90 | } |
| 91 | case exitCodes::PackingError: { |
| 92 | return "The CQtDeployer fail to Pack application."; |
| 93 | } |
| 94 | case exitCodes::PrepareError: { |
| 95 | return "The CQtDeployer fail to read configuration."; |
| 96 | } |
| 97 | |
| 98 | default: return ""; |
| 99 | |
| 100 | } |
| 101 | |
| 102 | return ""; |
| 103 | } |
| 104 | |
| 105 | bool Deploy::prepare() { |
| 106 |
nothing calls this directly
no outgoing calls
no test coverage detected