Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions internal/flag/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func Yes() Bool {
return Bool{
Name: flagnames.Yes,
Shorthand: "y",
Description: "Accept all confirmations",
Description: "Accept all confirmations (also --auto-confirm)",
Aliases: []string{"auto-confirm"},
}
}
Expand Down Expand Up @@ -436,7 +436,7 @@ const httpsFailover = "https-failover"
func HttpsFailover() Bool {
return Bool{
Name: httpsFailover,
Description: "Determines whether to failover to plain internet(https) communication with remote builders if wireguard fails",
Description: "Determines whether to failover to plain internet(https) communication with remote builders if wireguard fails (also --http-failover)",
Aliases: []string{"http-failover"},
Default: true,
}
Expand Down Expand Up @@ -636,7 +636,7 @@ func JSONOutput() Bool {

func ProcessGroup(desc string) String {
if desc == "" {
desc = "The target process group"
desc = "The target process group (also --group)"
}

return String{
Expand Down
8 changes: 4 additions & 4 deletions internal/flag/machines.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,17 @@ var VMSizeFlags = Set{
},
Int{
Name: "vm-cpus",
Description: "Number of CPUs",
Description: "Number of CPUs (also --cpus)",
Aliases: []string{"cpus"},
},
String{
Name: "vm-cpu-kind",
Description: "The kind of CPU to use ('shared' or 'performance')",
Description: "The kind of CPU to use ('shared' or 'performance') (also --vm-cpukind)",
Aliases: []string{"vm-cpukind"},
},
String{
Name: "vm-memory",
Description: "Memory (in megabytes) to attribute to the VM",
Description: "Memory (in megabytes) to attribute to the VM (also --memory)",
Aliases: []string{"memory"},
},
Int{
Expand All @@ -127,7 +127,7 @@ var VMSizeFlags = Set{
},
String{
Name: "vm-gpu-kind",
Description: fmt.Sprintf("If set, the GPU model to attach (%v)", strings.Join(validGPUKinds, ", ")),
Description: fmt.Sprintf("If set, the GPU model to attach (%v) (also --vm-gpukind)", strings.Join(validGPUKinds, ", ")),
Aliases: []string{"vm-gpukind"},
},
String{
Expand Down
Loading