diff --git a/common.go b/common.go index 94e3a4b..4b2215a 100644 --- a/common.go +++ b/common.go @@ -36,6 +36,11 @@ func (rs *RepoStatus) String() string { // returns the go path for the repo. "go.wit.com/apps/autotypist" func (rs *RepoStatus) GoName() string { + return rs.GoPath() +} + +// not sure which name is easier to remember. probably this one +func (rs *RepoStatus) GoPath() string { return rs.goSrcPath.String() }