aboutsummaryrefslogtreecommitdiff
path: root/host/commands/host_bugreport/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'host/commands/host_bugreport/main.cc')
-rw-r--r--host/commands/host_bugreport/main.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/host/commands/host_bugreport/main.cc b/host/commands/host_bugreport/main.cc
index fc68c41eb..a414dfc85 100644
--- a/host/commands/host_bugreport/main.cc
+++ b/host/commands/host_bugreport/main.cc
@@ -62,9 +62,6 @@ Result<void> AddNetsimdLogs(ZipWriter& writer) {
auto names =
CF_EXPECTF(DirectoryContents(dir), "Cannot read from {} directory.", dir);
for (const auto& name : names) {
- if (name == "." || name == "..") {
- continue;
- }
SaveFile(writer, "netsimd/" + name, dir + "/" + name);
}
return {};
@@ -99,9 +96,6 @@ Result<void> CvdHostBugreportMain(int argc, char** argv) {
auto logs = CF_EXPECT(DirectoryContents(instance.PerInstancePath("logs")),
"Cannot read from logs directory.");
for (const auto& log : logs) {
- if (log == "." || log == "..") {
- continue;
- }
save("logs/" + log);
}
} else {
@@ -114,18 +108,12 @@ Result<void> CvdHostBugreportMain(int argc, char** argv) {
CF_EXPECT(DirectoryContents(instance.PerInstancePath("tombstones")),
"Cannot read from tombstones directory.");
for (const auto& tombstone : tombstones) {
- if (tombstone == "." || tombstone == "..") {
- continue;
- }
save("tombstones/" + tombstone);
}
auto recordings =
CF_EXPECT(DirectoryContents(instance.PerInstancePath("recording")),
"Cannot read from recording directory.");
for (const auto& recording : recordings) {
- if (recording == "." || recording == "..") {
- continue;
- }
save("recording/" + recording);
}
}