diff options
author | Cem Keylan <cem@ckyln.com> | 2020-02-19 13:28:36 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-02-19 13:28:36 +0300 |
commit | dc238623f0e653badc865d777b58137eaafe92d1 (patch) | |
tree | 0ea5e3ff6fde3da4f9e9d54d8fffe6fb42b1ca7c | |
parent | 0882b2e4e8eb9675b3717e4890aacf71b99cea23 (diff) | |
download | mkrootfs-dc238623f0e653badc865d777b58137eaafe92d1.tar.gz |
add KISS_ASROOT variable and skip confirmations with yes
-rwxr-xr-x | mkrootfs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkrootfs.sh b/mkrootfs.sh index 7b91e61..0fe3074 100755 --- a/mkrootfs.sh +++ b/mkrootfs.sh @@ -83,7 +83,7 @@ msg "Starting build from the PKGS variable" # Word Splitting is intentional here, as we are # passing package names seperately # shellcheck disable=SC2086 -kiss b $PKGS +yes '' | KISS_ASROOT=1 kiss b $PKGS # You can check out about post-installation # from the configuration file |