We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f871d1 commit 32d42ecCopy full SHA for 32d42ec
1 file changed
base/cvd/cuttlefish/host/commands/cvd/fetch/fetch_context.cc
@@ -136,7 +136,11 @@ Result<void> FetchArtifact::ExtractAll(const std::string& local_path) {
136
137
fetch_build_context_.DesparseFiles(extracted);
138
for (const std::string& file : extracted) {
139
- CF_EXPECT(fetch_build_context_.AddFileToConfig(file));
+ // Hack: avoid assemble_cvd incorrect match against `ti50-emulator-kernel`
140
+ // file when it looks for files ending in `kernel`. b/461569369#comment2
141
+ if (!absl::EndsWith(file, "kernel")) {
142
+ CF_EXPECT(fetch_build_context_.AddFileToConfig(file));
143
+ }
144
}
145
146
return {};
0 commit comments