diff --git a/update-includes.sh b/update-includes.sh index 12a005c..35f46c2 100755 --- a/update-includes.sh +++ b/update-includes.sh @@ -1,4 +1,15 @@ #!/bin/bash set -e -git clone https://github.com/LemmyNet/lemmy.git include --depth 1 \ No newline at end of file +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" \ No newline at end of file