Suppress extract success message when quiet flag is set

This commit is contained in:
Andrew Rabert 2024-06-06 17:55:59 -04:00
parent 81b6bfaa1e
commit 896bb509ab
1 changed files with 2 additions and 1 deletions

View File

@ -355,7 +355,8 @@ int Extract(const std::vector<std::string>& args)
return EXIT_FAILURE;
}
fmt::println(std::cerr, "Finished Successfully!");
if (!quiet)
fmt::println(std::cerr, "Finished Successfully!");
return EXIT_SUCCESS;
}
} // namespace DolphinTool