Fix apt interpolation

This commit is contained in:
juvenal.diaz 2026-07-22 22:11:57 -06:00
parent 9df2dd0fd4
commit 0d05159054
1 changed files with 4 additions and 4 deletions

View File

@ -52,8 +52,8 @@ configure_debian_apt_https() {
} }
diagnose_apt_network() { diagnose_apt_network() {
local reason="${1:-APT package install failed}" local reason="$${1:-APT package install failed}"
local packages="${2:-}" local packages="$${2:-}"
echo "$reason; checking APT state and mirror reachability..." >&2 echo "$reason; checking APT state and mirror reachability..." >&2
if [ -n "$packages" ]; then if [ -n "$packages" ]; then
@ -610,8 +610,8 @@ configure_debian_apt_https() {
} }
diagnose_apt_network() { diagnose_apt_network() {
local reason="${1:-APT package install failed}" local reason="$${1:-APT package install failed}"
local packages="${2:-}" local packages="$${2:-}"
echo "$reason; checking APT state and mirror reachability..." >&2 echo "$reason; checking APT state and mirror reachability..." >&2
if [ -n "$packages" ]; then if [ -n "$packages" ]; then