This commit is contained in:
Unknown 2014-06-12 07:45:33 -04:00
Родитель c018b1a88d
Коммит 1161c71ac1
2 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,5 @@
filesets:
includes:
- conf
- templates
- public
- LICENSE

Просмотреть файл

@ -61,8 +61,6 @@ func CreateRelease(gitRepo *git.Repository, rel *Release) error {
if !gitRepo.IsTagExist(rel.TagName) {
_, stderr, err := com.ExecCmdDir(gitRepo.Path, "git", "tag", rel.TagName, "-m", rel.Title)
if err != nil {
return err
} else if strings.Contains(stderr, "fatal:") {
return errors.New(stderr)
}
} else {