Include stable Lemmy tag (fixes #146)

This commit is contained in:
Felix Ableitner 2022-09-01 12:41:36 +02:00
parent 8b9c725eb1
commit cf842cfee4

View file

@ -1,4 +1,15 @@
#!/bin/bash #!/bin/bash
set -e set -e
git clone https://github.com/LemmyNet/lemmy.git include --depth 1 LEMMY_VERSION=$(curl "https://raw.githubusercontent.com/LemmyNet/lemmy-ansible/main/VERSION")
if [ ! -d "include/.git" ]
then
git clone https://github.com/LemmyNet/lemmy.git include
cd include
else
cd include
git checkout main
git pull
fi
git fetch --tags
git checkout "$LEMMY_VERSION"