From 816a36ffceb71c82adb079fc8e6a1299299fa27b Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Thu, 21 Sep 2023 23:37:43 -0400 Subject: [PATCH] Added 32-bit architecture addition --- scripts/os_debian | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/os_debian b/scripts/os_debian index 53b21d6..25f3e16 100755 --- a/scripts/os_debian +++ b/scripts/os_debian @@ -51,6 +51,8 @@ if [[ -n "\$install" ]]; then apt -y install \$install fi +grep ':i386' InstallOnly.list &>/dev/null && dpkg --add-architecture i386 + rsync --ignore-existing -raz sources.list.d/ /etc/apt/sources.list.d/ rsync --ignore-existing -raz trusted.gpg.d/ /etc/apt/trusted.gpg.d/ xargs aptitude --schedule-only install < InstallOnly.list