mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2025-09-20 18:17:15 +00:00
Install apt-fast to remove CLI warning.
This commit is contained in:
parent
58300fb993
commit
bccf073335
|
@ -7,9 +7,6 @@ set -e
|
|||
script_dir="$(dirname -- "$(realpath -- "${0}")")"
|
||||
source "${script_dir}/lib.sh"
|
||||
|
||||
# Install apt-fast for optimized installs.
|
||||
/bin/bash -c "$(curl -sL https://git.io/vokNn)"
|
||||
|
||||
# Directory that holds the cached packages.
|
||||
cache_dir="${1}"
|
||||
|
||||
|
|
|
@ -37,6 +37,13 @@ log "done"
|
|||
|
||||
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
|
||||
|
||||
versioned_packages=""
|
||||
log "Verifying packages..."
|
||||
for package in ${packages}; do
|
||||
|
|
Loading…
Reference in a new issue