From b09baa7fce9db906365415b8a00437947653113d Mon Sep 17 00:00:00 2001 From: Andrew Walsh Date: Sat, 3 Sep 2022 21:32:04 -0700 Subject: [PATCH] Remove gzip option from archive. --- restore_pkgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restore_pkgs.sh b/restore_pkgs.sh index d58c07c..e398a3e 100755 --- a/restore_pkgs.sh +++ b/restore_pkgs.sh @@ -31,7 +31,7 @@ log "done" log_empty_line # Only search for archived results. Manifest and cache key also live here. -cached_pkg_filepaths=$(ls -1 "${cache_dir}"/*.tar.gz | sort) +cached_pkg_filepaths=$(ls -1 "${cache_dir}"/*.tar | sort) cached_pkg_filecount=$(echo ${cached_pkg_filepaths} | wc -w) log "Restoring ${cached_pkg_filecount} packages from cache..." for cached_pkg_filepath in ${cached_pkg_filepaths}; do