diff options
| author | Jeff Carr <[email protected]> | 2024-12-04 15:36:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-04 15:36:49 -0600 |
| commit | f98179971e574de202c582576e59a8e3da68530f (patch) | |
| tree | d7ae78b10ea961722015a658e82cb13dbe92ad2d /human.go | |
| parent | 4d221c522035e05947b136385e23b78eccc9c578 (diff) | |
this .proto might allow generic marshal recovery
Diffstat (limited to 'human.go')
| -rw-r--r-- | human.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,10 +23,10 @@ func standardHeader() string { func (f *Forge) standardHeader(r *ForgeConfig) string { var flags string var readonly string - if f.IsPrivate(r.GoPath) { + if f.Config.IsPrivate(r.GoPath) { flags += "(private) " } - if f.IsFavorite(r.GoPath) { + if f.Config.IsFavorite(r.GoPath) { flags += "(favorite) " } if f.Config.IsReadOnly(r.GoPath) { |
