Skip to content

Commit 8b0f1c7

Browse files
README.md
1 parent 51a1bf8 commit 8b0f1c7

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ awxhelper configure
2323
# Available Commands
2424

2525
```bash
26-
26+
configure Configure your AWX connection
27+
downloaddb Download database dump
28+
forceupdate Force check for new updates and install if available
2729
```

cmd/configure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
var configureCmd = &cobra.Command{
1515
Use: "configure",
16-
Short: "Configure your connection to AWX (Ansible automation platform)",
16+
Short: "Configure your AWX connection",
1717
Run: func(cmd *cobra.Command, args []string) {
1818
url, _ := cmd.Flags().GetString("url")
1919
username, _ := cmd.Flags().GetString("username")

cmd/forceupdate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
var forceupdateCmd = &cobra.Command{
1414
Use: "forceupdate",
15-
Short: "Force check for updates and apply if available",
15+
Short: "Force check for new updates and install if available",
1616
Run: func(cmd *cobra.Command, args []string) {
1717
if err := config.GetReleaser().ForceUpdate(); err != nil {
1818
fmt.Println("Error checking for updates:", err)

0 commit comments

Comments
 (0)