From 3bcac789eb4d2616dd390cb47c5638c4bb80ab3e Mon Sep 17 00:00:00 2001 From: Sefinek Date: Wed, 25 Dec 2024 19:08:49 +0100 Subject: [PATCH] Update install.sh --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 24f95d3..05d2b72 100644 --- a/install.sh +++ b/install.sh @@ -111,7 +111,7 @@ esac # Clone repository if [ -d "/home" ]; then mkdir -p /home/new_directory - echo "✅ '/home/new_directory' has been created." + echo "📂 '/home/new_directory' has been created." else echo "❌ '/home' directory does not exist. Exiting..." exit 1 @@ -120,10 +120,10 @@ fi cd /home || { echo "❌ Failed to change directory to '/home'. Exiting..."; exit 1; } if [ ! -d "UFW-AbuseIPDB-Reporter" ]; then - echo "📂 Cloning the UFW-AbuseIPDB-Reporter repository..." + echo "📥 Cloning the UFW-AbuseIPDB-Reporter repository..." git clone https://github.com/sefinek/UFW-AbuseIPDB-Reporter.git --branch node.js || { echo "❌ Failed to clone the repository. Exiting..."; exit 1; } else - echo "📂 The UFW-AbuseIPDB-Reporter repository already exists. Pulling latest changes..." + echo "✨ The UFW-AbuseIPDB-Reporter repository already exists! Pulling latest changes..." cd UFW-AbuseIPDB-Reporter || { echo "❌ Failed to change directory to 'UFW-AbuseIPDB-Reporter'. Exiting..."; exit 1; } git pull || { echo "❌ Failed to pull the latest changes. Exiting..."; exit 1; } fi