summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xiptv.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/iptv.sh b/iptv.sh
index 29308e3..c91c824 100755
--- a/iptv.sh
+++ b/iptv.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-step () { echo "[-] $1"; }
+step () { echo -e "\033[32m[-]\033[0m $1"; }
-fatal () { echo "[!] $1"; exit 1; }
+fatal () { echo -e "\033[31m[!]\033[0m $1"; exit 1; }
ensure_curl_is_installed () {
if ! command -v curl &>/dev/null; then