pull/184/head
Nicholas Wang 2020-11-25 11:07:21 -06:00 committed by GitHub
parent b33d8e5c2c
commit 33c2f93ca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ systemd_cat_config() {
check_if_running_as_root() {
# If you want to run as another user, please modify $UID to be owned by this user
if [[ "$UID" -ne '0' ]]; then
echo "Warning: You are root, and you may reach insufficient permission errors."
echo "Warning: You are not root, and you may reach insufficient permission errors."
read -p "Are you sure you want to continue? [y/N] " prompt
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
then