Merge pull request '[GITEA] Generate install if condition for Alpine' (#2286) from earl-warren/forgejo:wip-v1.21-alpine into v1.21/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2286
This commit is contained in:
commit
38800476bd
1 changed files with 3 additions and 0 deletions
|
@ -230,6 +230,9 @@ func buildPackagesIndex(ctx context.Context, ownerID int64, repoVersion *package
|
||||||
if len(pd.FileMetadata.Provides) > 0 {
|
if len(pd.FileMetadata.Provides) > 0 {
|
||||||
fmt.Fprintf(&buf, "p:%s\n", strings.Join(pd.FileMetadata.Provides, " "))
|
fmt.Fprintf(&buf, "p:%s\n", strings.Join(pd.FileMetadata.Provides, " "))
|
||||||
}
|
}
|
||||||
|
if pd.FileMetadata.InstallIf != "" {
|
||||||
|
fmt.Fprintf(&buf, "i:%s\n", pd.FileMetadata.InstallIf)
|
||||||
|
}
|
||||||
fmt.Fprint(&buf, "\n")
|
fmt.Fprint(&buf, "\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue