Fix XLibre updater package order

This commit is contained in:
Storm Dragon
2026-04-02 19:20:12 -04:00
parent 19fd4b1ed4
commit a6c65ca973

19
scripts/upgrade-xlibre.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -euo pipefail
packageList=(
xlibre-xserver-common
xlibre-xserver-devel
xlibre-input-libinput
xlibre-xserver
xlibre-video-fbdev
xlibre-video-dummy-with-vt
)
for i in "${packageList[@]}" ; do
yay -G "$i"
pushd "$i"
makepkg -Acris
popd
done