From 93a861c7258d36c7bc2ed46ff5b7989e73e456f8 Mon Sep 17 00:00:00 2001 From: morganamilo Date: Wed, 17 Jan 2018 04:09:19 +0000 Subject: [PATCH] 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. --- install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.go b/install.go index 61935576..7df6e8be 100644 --- a/install.go +++ b/install.go @@ -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.") }