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 ..