zerog

[archived] simple Parabola GNU/Linux post-install script
git clone git://git.hanetzok.net/zerog
Log | Files | Refs | README | LICENSE

commit 7e94754c7c23d3c635918339a39d739a2c5a5694
parent 4508fbd48ef72adebda92815c464f512c37fa4d2
Author: Markus Hanetzok <markus@hanetzok.net>
Date:   Sun, 14 Aug 2022 12:11:21 +0200

Make libxft-bgra install quiet and catch errors

Diffstat:
Mzerog | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/zerog b/zerog @@ -72,7 +72,8 @@ install_libxft-bgra() { sudo -u "$name" git clone "$libxftrepo" >/dev/null 2>&1 || { warning "Could not clone libxft-bgra"; return 1; } cd libxft-bgra - yes | sudo -u "$name" makepkg -si + yes | sudo -u "$name" makepkg -si >/dev/null 2>&1 || + { warning "Could not makepkg libxft-bgra"; return 1; } } follow_up() {