Update install-nginx-1.sh

Switch TERM to linux
This commit is contained in:
Mitchell Krog 2025-01-19 08:18:06 +02:00 committed by GitHub
parent fc562b76ce
commit 252b9cd9b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,8 @@
set -e set -e
set -o pipefail set -o pipefail
export TERM=xterm #export TERM=xterm
export TERM=linux
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# MIT License # MIT License
@ -48,7 +49,6 @@ export TERM=xterm
# ------------------------ # ------------------------
# Set Terminal Font Colors # Set Terminal Font Colors
# ------------------------ # ------------------------
bold=$(tput bold) bold=$(tput bold)
red=$(tput setaf 1) red=$(tput setaf 1)
green=$(tput setaf 2) green=$(tput setaf 2)
@ -57,7 +57,7 @@ blue=$(tput setaf 4)
magenta=$(tput setaf 5) magenta=$(tput setaf 5)
cyan=$(tput setaf 6) cyan=$(tput setaf 6)
white=$(tput setaf 7) white=$(tput setaf 7)
defaultcolor=$(tput setaf default) defaultcolor=$(tput setaf 7)
# --------- # ---------
# FUNCTIONS # FUNCTIONS