Add log timing to package normalization via Go script.

This commit is contained in:
Andrew Walsh 2023-11-26 21:49:00 -08:00
parent 8b55495730
commit 8010d65dfe

View file

@ -28,7 +28,9 @@ debug="${4}"
input_packages="${@:5}" input_packages="${@:5}"
# Trim commas, excess spaces, and sort. # Trim commas, excess spaces, and sort.
log "Normalizing package list..."
packages="$(get_normalized_package_list "${input_packages}")" packages="$(get_normalized_package_list "${input_packages}")"
log "done"
# Create cache directory so artifacts can be saved. # Create cache directory so artifacts can be saved.
mkdir -p ${cache_dir} mkdir -p ${cache_dir}