From 1a31138e09ddc2959496523d5abd35a1c4cf41a3 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sun, 19 Mar 2023 10:10:29 +0100 Subject: [PATCH] refactor --- de-p1st-installer.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/de-p1st-installer.sh b/de-p1st-installer.sh index d636c41..c533e28 100755 --- a/de-p1st-installer.sh +++ b/de-p1st-installer.sh @@ -363,9 +363,8 @@ function run_pacstrap() { if [ "${PACSTRAP_INTERACTIVE}" = 'true' ]; then args+=('-i') # Run interactively fi - args+=('/mnt') - sudo pacstrap "${args[@]}" "${PKGS[@]}" + sudo pacstrap -K "${args[@]}" /mnt "${PKGS[@]}" } function run_genfstab() {