Merge pull request #12839 from nvllsvm/fix_extract_success_quiet
Suppress extract success message when quiet flag is set
This commit is contained in:
commit
6b2dc1cae8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue