From bc3229644bf719a4d335c8ba482683c248c74f65 Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Thu, 30 Jun 2022 01:41:00 -0700 Subject: [PATCH] Fix another package enumeration. --- install_and_cache_pkgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_and_cache_pkgs.sh b/install_and_cache_pkgs.sh index 81096ed..21ba73e 100755 --- a/install_and_cache_pkgs.sh +++ b/install_and_cache_pkgs.sh @@ -41,7 +41,7 @@ for package in ${normalized_packages}; do sudo DEBIAN_FRONTEND=noninteractive apt-get --yes install "${package}" > /dev/null echo "done." - for cache_package in "${package_deps}"; do + for cache_package in ${package_deps}; do cache_filepath="${cache_dir}/${cache_package}.tar.gz" if test ! -f "${cache_filepath}"; then