diff options
| -rw-r--r-- | common.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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() } |
