diff --git a/base/cvd/cuttlefish/host/commands/cvd/cli/commands/reset.cpp b/base/cvd/cuttlefish/host/commands/cvd/cli/commands/reset.cpp index c836e298f63..9adc58204c1 100644 --- a/base/cvd/cuttlefish/host/commands/cvd/cli/commands/reset.cpp +++ b/base/cvd/cuttlefish/host/commands/cvd/cli/commands/reset.cpp @@ -158,6 +158,11 @@ class CvdResetCommandHandler : public CvdCommandHandler { } CF_EXPECT(KillAllCuttlefishInstances( /* clear_instance_dirs*/ options.clean_runtime_dir)); + + if (DirectoryExists("/tmp/acloud_cvd_temp/")) { + CF_EXPECT(RecursivelyRemoveDirectory("/tmp/acloud_cvd_temp/")); + } + return {}; } cvd_common::Args CmdList() const override { return {kResetSubcmd}; }