typo Warning

This commit is contained in:
羽先生 2022-06-07 20:46:59 +08:00 committed by GitHub
parent ccd1d5a891
commit 24daafb095
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ echo "You are running with user `id -u`:`id -g`"
if [ `id -u` -eq 0 ] && [ `id -g` -eq 0 ]; then
echo "Running in New Mode"
if [ "${UID}" -eq 0 ]; then
echo "Waring, it is not recommended to run as root user, please check if you have set the UID environment variable"
echo "Warning, it is not recommended to run as root user, please check if you have set the UID environment variable"
fi
echo "Setting umask to ${UMASK}"
umask ${UMASK}