diff options
Diffstat (limited to 'pkg/config/config.go')
| -rw-r--r-- | pkg/config/config.go | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index 6ac6d05..3759b7c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -42,6 +42,7 @@ type (  		Path        string  		Description string  		Public      bool +		About       string  	}  	// ConfigurationRepository represents the configuration repository (as in @@ -214,6 +215,10 @@ func setRepositories(block scfg.Block, repositories *[]*GitRepositoryConfigurati  				if err := setBool(d, &repository.Public); err != nil {  					return err  				} +			case "about": +				if err := setString(d, &repository.About); err != nil { +					return err +				}  			}  		} @@ -249,6 +254,7 @@ func defaultRepisotryConfiguration(path string) *GitRepositoryConfiguration {  		Name:        filepath.Base(path),  		Description: "",  		Public:      false, +		About:       "README.md",  	}  }  | 
