mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 16:29:37 +00:00
fix missing repo description when migrating (#7000)
This commit is contained in:
parent
8de76b6e64
commit
02542a2c15
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue