commit 613a67d20bb89af4ff2be3325b588954f328d0be
parent c08037f7e5173d496a6ff5ffd6709c347cac88c4
Author: Cem Keylan <cem@ckyln.com>
Date: Thu, 30 Apr 2020 11:44:13 +0300
Install packages multiple times
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/mkrootfs.sh b/mkrootfs.sh
@@ -78,7 +78,10 @@ msg "Starting build from the PKGS variable"
# Word Splitting is intentional here, as we are
# passing package names seperately
# shellcheck disable=SC2086
-yes '' | KISS_ASROOT=1 kiss b $PKGS
+{
+ yes '' | KISS_ASROOT=1 kiss b $PKGS
+ yes '' | KISS_ASROOT=1 kiss i $PKGS
+}
# You can check out about post-installation
# from the configuration file