From 65cf98ee12b4aa207554463c5f9d968c93af9390 Mon Sep 17 00:00:00 2001 From: Pascal Roeleven Date: Tue, 7 Mar 2023 10:49:37 +0100 Subject: [PATCH] Revert "Don't install apt-fast from source (#96)" This reverts commit 854bb539e1ea0eaf0d146dcc1e15197cc2758970. --- install_and_cache_pkgs.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install_and_cache_pkgs.sh b/install_and_cache_pkgs.sh index a5aeffd..3ef616d 100755 --- a/install_and_cache_pkgs.sh +++ b/install_and_cache_pkgs.sh @@ -37,6 +37,13 @@ write_manifest "main" "${manifest_main}" "${cache_dir}/manifest_main.log" log_empty_line +log "Installing apt-fast for optimized installs..." +# Install apt-fast for optimized installs. +/bin/bash -c "$(curl -sL https://git.io/vokNn)" +log "done" + +log_empty_line + log "Updating APT package list..." if [[ -z "$(find -H /var/lib/apt/lists -maxdepth 0 -mmin -5)" ]]; then sudo apt-fast update > /dev/null