diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-05-28 22:40:44 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-05-28 22:40:44 -0400 |
commit | 962c2fc9374af52ae3137ebf7c537e035644b3c4 (patch) | |
tree | 17f8b3dd1a0e77623dda2c8ecb8e1850119fd976 | |
parent | fd6e53a6d69c1f6ce04ee66e87eb4cdfbebd985f (diff) |
added asdeps flag for gconf
-rwxr-xr-x | source.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -27,13 +27,14 @@ cd .. aurbuild() { git clone https://aur.archlinux.org/$1.git cd $1 + if [ $2 = '--asdeps' ]; then makepkg --noconfirm --asdeps -si makepkg --noconfirm -si cd .. } aurbuild preloader-signed & aurbuild woeusb & -aurbuild gconf && aurbuild minecraft-launcher-beta& +aurbuild gconf --asdeps && aurbuild minecraft-launcher-beta& aurbuild zoom & gpg --auto-key-locate nodefault,wkd --locate-keys torbrowser@torproject.org aurbuild tor-browser & |