From 4cfeb6073ccabb68af11699c3448cfb637a0c464 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 25 Nov 2025 07:28:10 -0700 Subject: [PATCH] Add missing params variable to final update command. --- bashrc.sh | 2 +- env.example | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 env.example diff --git a/bashrc.sh b/bashrc.sh index da5f826..2e0a150 100644 --- a/bashrc.sh +++ b/bashrc.sh @@ -115,7 +115,7 @@ function update { echo -e "\n*** Upgrade ***" && # No longer using `apt`, in favor of Termux's wrapper `pkg`. #apt dist-upgrade --allow-downgrades --fix-broken --fix-missing $params && - pkg upgrade + pkg upgrade $params echo -e "\n******* Mission Complete!! *******" } alias upgrade="update" diff --git a/env.example b/env.example deleted file mode 100644 index c8ad693..0000000 --- a/env.example +++ /dev/null @@ -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!"