| 116 | } |
| 117 | |
| 118 | [[nodiscard]] inline Result readFileIntoString(StringSpan path, String& output) |
| 119 | { |
| 120 | FileDescriptor file; |
| 121 | SC_TRY(file.open(path, FileOpen::Read)); |
| 122 | return file.readUntilEOF(output); |
| 123 | } |
| 124 | |
| 125 | [[nodiscard]] inline Result packageMetadataMatches(const Download& download, const Package& package, bool& matches) |
| 126 | { |