We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b825d commit 563eb89Copy full SHA for 563eb89
Sources/hostmgr/main.swift
@@ -4,6 +4,8 @@ import Logging
4
5
struct HostMgr: ParsableCommand {
6
7
+ private var appVersion = "0.6.0"
8
+
9
static var configuration = CommandConfiguration(
10
abstract: "A utility for managing VM hosts",
11
subcommands: [
@@ -20,7 +22,7 @@ struct HostMgr: ParsableCommand {
20
22
func run() throws {
21
23
logger.debug("Starting Up")
24
if version {
- print("1.0.0")
25
+ print(appVersion)
26
} else {
27
throw CleanExit.helpRequest(self)
28
}
0 commit comments