We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c43048 commit 6c51b45Copy full SHA for 6c51b45
pkg/apk/apk/package.go
@@ -32,7 +32,7 @@ import (
32
"chainguard.dev/apko/pkg/apk/expandapk"
33
)
34
35
-// PackageToInstalled takes a Package and returns it as the string representation of lines in a /var/lib/apk/db/installed file.
+// PackageToInstalled takes a Package and returns it as the string representation of lines in a /usr/lib/apk/db/installed file.
36
func PackageToInstalled(pkg *Package) (out []string) {
37
out = append(out, fmt.Sprintf("P:%s", pkg.Name))
38
out = append(out, fmt.Sprintf("V:%s", pkg.Version))
0 commit comments