From 4e9b4f81b1cf57d96a100d1ee16d937b028e920c Mon Sep 17 00:00:00 2001
From: yollotltamayo <yollotltamayo@comunidad.unam.mx>
Date: Thu, 30 Jul 2020 11:09:54 -0500
Subject: [PATCH] fixed issue #63

---
 _webi/template.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/_webi/template.sh b/_webi/template.sh
index 4ace514..c595d90 100644
--- a/_webi/template.sh
+++ b/_webi/template.sh
@@ -147,8 +147,8 @@ webi_download() {
         return 0
     fi
 
-    echo "Downloading $PKG_NAME from:"
-    echo -e "\e]8;;$WEBI_PKG_URL\a$WEBI_PKG_URL\e]8;;\a"
+    echo "Downloading $PKG_NAME from:" #Show the package and the source URL  
+    echo "$WEBI_PKG_URL"
     # It's only 2020, we can't expect to have reliable CLI tools
     # to tell us the size of a file as part of a base system...
     if [ -n "$WEBI_WGET" ]; then
@@ -167,7 +167,7 @@ webi_download() {
         curl -fSL -H "User-Agent: curl $WEBI_UA" "$my_url" -o "$my_dl.part"
     fi
     echo ""
-    echo "Saved as $my_dl"
+    echo "Saved as $my_dl" #Show the path of the package
     mv "$my_dl.part" "$my_dl"
 }
 
-- 
2.25.1