From 0750bfd3f0e6546956a5aaf3f7f4204373c53400 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 30 Mar 2024 18:36:28 +0100 Subject: [PATCH] fix arg --- termux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/termux.sh b/termux.sh index 0297e56..9ce36fd 100644 --- a/termux.sh +++ b/termux.sh @@ -18,11 +18,12 @@ function main { apt_arg='-y -o Dpkg::Options::="--force-confnew"' # === Update == - apt-get update -y -o Dpkg::Options::="--force-confnew" + eval "apt-get update ${apt_arg}" # === Packages == - apt-get install -y -o Dpkg::Options::="--force-confnew" fish eza tealdeer bat + eval "apt-get install ${apt_arg} \ + fish eza tealdeer bat wget" # === Fish ==