Skip to content

Commit e5f78fe

Browse files
cydu-cloudpull[bot]
authored andcommitted
Update repo normalize error message to include the name of the repo.
Signed-off-by: Chuanying Du <[email protected]> Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 37a1c1d commit e5f78fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

reference/docker/normalize.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package docker
1818

1919
import (
20-
"errors"
2120
"fmt"
2221
"strings"
2322

@@ -57,7 +56,7 @@ func ParseNormalizedNamed(s string) (Named, error) {
5756
remoteName = remainder
5857
}
5958
if strings.ToLower(remoteName) != remoteName {
60-
return nil, errors.New("invalid reference format: repository name must be lowercase")
59+
return nil, fmt.Errorf("invalid reference format: repository name (%s) must be lowercase", remoteName)
6160
}
6261

6362
ref, err := Parse(domain + "/" + remainder)

0 commit comments

Comments
 (0)