1
0
Fork 0

feat: add pacman-contrib installer

This commit is contained in:
Kim, Jimin 2024-04-15 16:13:53 +09:00
parent 152b9ee4c0
commit 682b251637
Signed by: pomp
GPG key ID: 2B516173EDD492EB

View file

@ -0,0 +1,13 @@
package installers
import "github.com/developomp/pompup/internal/wrapper"
func init() {
register(&Installer{
Name: "Pacman-contrib",
Desc: "pactree and other stuff",
Setup: func() {
wrapper.ParuOnce("pacman-contrib")
},
})
}