install: use git clone instead of archive

This commit is contained in:
Lephenixnoir 2023-12-16 17:55:36 +01:00
parent ce7342045b
commit 13e3acb4a8
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 2 additions and 3 deletions

View File

@ -2,13 +2,12 @@
TAG=$(printf "\x1b[36m<giteapc>\x1b[0m")
PREFIX=${GITEAPC_PREFIX:-$HOME/.local}
URL="https://gitea.planet-casio.com/Lephenixnoir/GiteaPC/archive/master.tar.gz"
URL="https://gitea.planet-casio.com/Lephenixnoir/GiteaPC"
# Download the source code
cd "$(mktemp -d)"
curl "$URL" -o giteapc-master.tar.gz
tar -xzf giteapc-master.tar.gz && cd giteapc
git clone --depth=1 "$URL" giteapc && cd giteapc
# Bootstrap the program by installing it with itself (allowing updates)