From 8c8bc700099db9b7a91117bf5d84fc7a0e46b530 Mon Sep 17 00:00:00 2001 From: q Date: Mon, 25 Nov 2024 20:02:14 -0500 Subject: [PATCH] removing --depth 1 to fix Element missing a version number. --- download_element.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_element.sh b/download_element.sh index 7968d9e..ae1451a 100755 --- a/download_element.sh +++ b/download_element.sh @@ -24,7 +24,7 @@ branch=develop #branch=$(curl -s https://api.github.com/repos/element-hq/element-web/tags | grep -oP '"name": "\K[^"]+' | head -n 1) echo "Downloading Element Web from branch '${branch}'" -git clone --depth 1 --branch "${branch}" "${repository_url}" "${directory_name}" +git clone --branch "${branch}" "${repository_url}" "${directory_name}" cd "${directory_name}" yarn cd ..