fix missing repo description when migrating (#7000)

release/v1.9
Lunny Xiao 5 years ago committed by Lauris BH
parent 8de76b6e64
commit 02542a2c15

@ -76,6 +76,9 @@ func migrateRepository(downloader base.Downloader, uploader base.Uploader, opts
}
repo.IsPrivate = opts.Private
repo.IsMirror = opts.Mirror
if opts.Description != "" {
repo.Description = opts.Description
}
log.Trace("migrating git data")
if err := uploader.CreateRepo(repo, opts.Wiki); err != nil {
return err

Loading…
Cancel
Save