Fix makepkg not behaving correctly

This bug was caused by me not thinking when passing flags to aurInstall.
Currently a bunch of functions take an array of flags but we don't really
use them any more after the argument parsing update. These should be
refactored out eventually but I'm holding off until I'm more sure about
how these functions should look.
This commit is contained in:
morganamilo 2018-01-17 04:09:19 +00:00
parent 41e9f8694e
commit 93a861c725
No known key found for this signature in database
GPG key ID: 6FE9E7996B0B082E

View file

@ -27,7 +27,7 @@ func install(parser *arguments) error {
}
if len(aurs) != 0 {
err := aurInstall(aurs, []string{"-S"})
err := aurInstall(aurs, []string{})
if err != nil {
fmt.Println("Error installing aur packages.")
}