Update glacier-install.sh

This commit is contained in:
everest 2022-04-19 17:44:36 -04:00 committed by GitHub
parent 18cd53cbce
commit 1ff803c044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,17 +3,17 @@
# Script used to fetch installation scripts and run them # Script used to fetch installation scripts and run them
# Define colors # Define colors
red="\033[1;31m" export red="\033[1;31m"
green="\033[1;32m" export green="\033[1;32m"
yellow="\033[1;33m" export yellow="\033[1;33m"
blue="\033[1;34m" export blue="\033[1;34m"
reset="\033[m" exportreset="\033[m"
# Define unicode symbols # Define unicode symbols
check="\xE2\x9C\x93" export check="\xE2\x9C\x93"
error="\xE2\x9C\x95" export error="\xE2\x9C\x95"
warning="\x21" export warning="\x21"
question="\x3F" export question="\x3F"
# Require the script to be run as root # Require the script to be run as root
if [[ $(/usr/bin/id -u) -ne 0 ]]; then if [[ $(/usr/bin/id -u) -ne 0 ]]; then