| 100 | } // namespace SC |
| 101 | |
| 102 | int main() |
| 103 | { |
| 104 | SC::Result result = SC::runAwaitFilePatch(); |
| 105 | if (not result) |
| 106 | { |
| 107 | SC::Console console; |
| 108 | SC::Console::tryAttachingToParentConsole(); |
| 109 | console.print("AwaitFilePatch failed: {}\n", result.message); |
| 110 | return -1; |
| 111 | } |
| 112 | return 0; |
| 113 | } |
nothing calls this directly
no test coverage detected