feat: Renaming to bump-version
All checks were successful
CI / Ubuntu (push) Successful in 2m55s

This commit is contained in:
2024-12-24 16:39:38 -05:00
parent 9ea0ab566e
commit 322327d6d7
12 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
import ArgumentParser
import CliClient
import Foundation
import ShellClient
struct BuildCommand: AsyncParsableCommand {
static let configuration: CommandConfiguration = .init(
commandName: "build",
abstract: "Used for the build with version plugin.",
discussion: "This should generally not be interacted with directly, outside of the build plugin.",
shouldDisplay: false
)
@OptionGroup var globals: GlobalOptions
func run() async throws {
try await globals.run(\.build)
}
}