Fix apt interpolation
This commit is contained in:
parent
9df2dd0fd4
commit
0d05159054
|
|
@ -52,8 +52,8 @@ configure_debian_apt_https() {
|
|||
}
|
||||
|
||||
diagnose_apt_network() {
|
||||
local reason="${1:-APT package install failed}"
|
||||
local packages="${2:-}"
|
||||
local reason="$${1:-APT package install failed}"
|
||||
local packages="$${2:-}"
|
||||
|
||||
echo "$reason; checking APT state and mirror reachability..." >&2
|
||||
if [ -n "$packages" ]; then
|
||||
|
|
@ -610,8 +610,8 @@ configure_debian_apt_https() {
|
|||
}
|
||||
|
||||
diagnose_apt_network() {
|
||||
local reason="${1:-APT package install failed}"
|
||||
local packages="${2:-}"
|
||||
local reason="$${1:-APT package install failed}"
|
||||
local packages="$${2:-}"
|
||||
|
||||
echo "$reason; checking APT state and mirror reachability..." >&2
|
||||
if [ -n "$packages" ]; then
|
||||
|
|
|
|||
Loading…
Reference in New Issue