Skip to content

Commit

Permalink
Fix name in help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
cvhariharan committed Apr 11, 2024
1 parent 62ed828 commit 00cfd78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/dot/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ concurrently.`,

func init() {
rootCmd.Flags().StringVarP(&jobFilePath, "job-file-path", "f", "dot.yml", "Path to the job file.")
rootCmd.Flags().BoolVarP(&mountDockerSocket, "mount-docker-socket", "m", false, "Mount docker socket. Required to run containers from done.")
rootCmd.Flags().BoolVarP(&mountDockerSocket, "mount-docker-socket", "m", false, "Mount docker socket. Required to run containers from dot.")
rootCmd.Flags().StringVarP(&username, "registry-username", "u", "", "Username for the container registry")
rootCmd.Flags().StringVarP(&password, "registry-password", "p", "", "Password / Token for the container registry")

Expand Down
2 changes: 1 addition & 1 deletion cmd/dot/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var (

var versionCmd = &cobra.Command{
Use: "version",
Short: "Shows the current version of Done CLI",
Short: "Shows the current version of Dot CLI",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Version:", version)
fmt.Println("Build Date:", builddate)
Expand Down

0 comments on commit 00cfd78

Please sign in to comment.