소스 검색

Merge pull request #1866 from stuart-c/bugfix/help_typo

Correct typo in bashbrew push --namespace message
Tianon Gravi 9 년 전
부모
커밋
fdcb47ff10
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bashbrew/go/src/bashbrew/cmd-push.go

+ 1 - 1
bashbrew/go/src/bashbrew/cmd-push.go

@@ -16,7 +16,7 @@ func cmdPush(c *cli.Context) error {
 	namespace := c.String("namespace")
 
 	if namespace == "" {
-		return fmt.Errorf(`"--namespace" is a required flag for "tag"`)
+		return fmt.Errorf(`"--namespace" is a required flag for "push"`)
 	}
 
 	for _, repo := range repos {