#8 skip path if branch exists #12

Merged
vtolstov merged 90 commits from kgorbunov/pkgdash:master into master 2024-04-03 08:28:17 +03:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit e72d5ec0d1 - Show all commits

View File

@ -35,6 +35,13 @@ func NewConfig() *Config {
}
}
type UpdateOpt struct {
Pre bool `json:"pre" yaml:"pre" default:"false"`
Major bool `json:"major" yaml:"major" default:"false"`
UpMajor bool `json:"up_major" yaml:"up_major" default:"false"`
Cached bool `json:"cached" yaml:"cached" default:"true"`
}
func NewConfig() *Config {
return &Config{
Source: &Source{},