From 613a67d20bb89af4ff2be3325b588954f328d0be Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 30 Apr 2020 11:44:13 +0300 Subject: Install packages multiple times --- mkrootfs.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mkrootfs.sh b/mkrootfs.sh index e383de9..b7f1e15 100755 --- 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 -- cgit v1.2.3