diff options
-rw-r--r-- | lazy-installer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lazy-installer.sh b/lazy-installer.sh index 6e7276c..a799f47 100644 --- a/lazy-installer.sh +++ b/lazy-installer.sh @@ -2,7 +2,7 @@ # Function to check if running as root check_root() { - if [ "$(id -u)" -ne 0; then + if [ "$(id -u)" -ne 0 ]; then echo "Please run this script as root." echo "To switch to root, use: su" echo "Then navigate to the home directory and clone the repository:" |