fortify: improve help message wording
test / test (push) Successful in 27s Details

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra Umiker 2024-11-04 23:37:13 +09:00
parent 1c3c338905
commit 51d5514312
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
1 changed files with 4 additions and 4 deletions

View File

@ -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 {