Skip to content

Commit c794fd4

Browse files
authored
Merge pull request #154 from replicatedhq/sha-7
use a 7 character sha 🤦
2 parents 78f5b64 + 22c7053 commit c794fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cmd/release_create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (r *runners) gitSHABranch() (sha string, branch string, dirty bool, err err
8585
return "", "", false, errors.Wrap(err, "get git status")
8686
}
8787

88-
return h.String()[0:6], head.Name().Short(), !status.IsClean(), nil
88+
return h.String()[0:7], head.Name().Short(), !status.IsClean(), nil
8989
}
9090

9191
func (r *runners) setKOTSDefaultReleaseParams() error {

0 commit comments

Comments
 (0)