From 13b8ebb8f746d1858e3dd7799214f1e23c6d4927 Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Thu, 21 Oct 2021 22:16:49 -0700 Subject: [PATCH] Fix package number reported. --- restore_pkgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restore_pkgs.sh b/restore_pkgs.sh index 8b83b91..f687441 100755 --- a/restore_pkgs.sh +++ b/restore_pkgs.sh @@ -21,7 +21,7 @@ done # Only search for archived results. Manifest and cache key also live here. cache_pkg_filenames=$(ls -1 $cache_dir/*.tar.gz | sort) -echo "Found $(echo $cache_filenames | wc -w) packages in the cache." +echo "Found $(echo $cache_pkg_filenames | wc -w) packages in the cache." for cache_pkg_filename in $cache_pkg_filenames; do echo "- $(basename $cache_pkg_filename)" done