A couple more ParsableCommand -> AsyncParsableCommand fixes

This commit is contained in:
Greg Neagle
2025-05-28 14:53:09 -07:00
parent 4e31fc73c5
commit d534f753c5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ func getInstallerItemNames(repo: Repo, catalogs: [String]) async -> [String] {
/// Lists items in the given catalogs
extension ManifestUtil {
struct ListCatalogItems: ParsableCommand {
struct ListCatalogItems: AsyncParsableCommand {
static var configuration = CommandConfiguration(
abstract: "Lists items in the given catalogs.")
+1 -1
View File
@@ -534,7 +534,7 @@ class RepoCleaner {
}
@main
struct RepoClean: ParsableCommand {
struct RepoClean: AsyncParsableCommand {
static let configuration = CommandConfiguration(
commandName: "repoclean",
abstract: "Cleans up older packages and pkginfos from a repo"