We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1088f commit 943e766Copy full SHA for 943e766
POST_INSTALL.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+echo Installing AUR packages
4
+pacman -Syu
5
6
+for PACKAGE in /FILES/AUR_PACKAGES/*.zst
7
+do
8
+ echo Installing ${PACKAGE}
9
+ pacman -U "${PACKAGE}" --needed --noconfirm
10
+done
11
0 commit comments