fortify: improve help message wording
test / test (push) Successful in 27s
Details
test / test (push) Successful in 27s
Details
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
1c3c338905
commit
51d5514312
8
main.go
8
main.go
|
@ -51,12 +51,12 @@ func main() {
|
||||||
fmt.Println("Commands:")
|
fmt.Println("Commands:")
|
||||||
w := tabwriter.NewWriter(os.Stdout(), 0, 1, 4, ' ', 0)
|
w := tabwriter.NewWriter(os.Stdout(), 0, 1, 4, ' ', 0)
|
||||||
commands := [][2]string{
|
commands := [][2]string{
|
||||||
{"app", "Launch app from specified config file"},
|
{"app", "Launch app defined by the specified config file"},
|
||||||
{"run", "Start a permissive default sandbox"},
|
{"run", "Configure and start a permissive default sandbox"},
|
||||||
{"ps", "Show state information of active apps"},
|
{"ps", "List active apps and their state"},
|
||||||
{"version", "Show fortify version"},
|
{"version", "Show fortify version"},
|
||||||
{"license", "Show full license text"},
|
{"license", "Show full license text"},
|
||||||
{"template", "Product a full config template"},
|
{"template", "Product a config template"},
|
||||||
{"help", "Show this help message"},
|
{"help", "Show this help message"},
|
||||||
}
|
}
|
||||||
for _, c := range commands {
|
for _, c := range commands {
|
||||||
|
|
Loading…
Reference in New Issue