Add missing params variable to final update command.

This commit is contained in:
2025-11-25 07:28:10 -07:00
parent 74bdd45ef7
commit 4cfeb6073c
2 changed files with 1 additions and 10 deletions

View File

@@ -115,7 +115,7 @@ function update {
echo -e "\n*** Upgrade ***" && echo -e "\n*** Upgrade ***" &&
# No longer using `apt`, in favor of Termux's wrapper `pkg`. # No longer using `apt`, in favor of Termux's wrapper `pkg`.
#apt dist-upgrade --allow-downgrades --fix-broken --fix-missing $params && #apt dist-upgrade --allow-downgrades --fix-broken --fix-missing $params &&
pkg upgrade pkg upgrade $params
echo -e "\n******* Mission Complete!! *******" echo -e "\n******* Mission Complete!! *******"
} }
alias upgrade="update" alias upgrade="update"

View File

@@ -1,9 +0,0 @@
# 2024-02-10 Hyperling
# Variables for a fast-access SSH alias.
PROD_USER=username
PROD_NAME=example.com
PROD_PORT=2222
PROG="$(basename -- "${BASH_SOURCE[0]}")"
echo "'$PROG' completed!"