PLEASEEEE

This commit is contained in:
Core 2022-08-01 15:06:10 +01:00
parent b0718e6247
commit 4303477fa5
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6

View file

@ -4,9 +4,9 @@
git rev-list origin..HEAD git rev-list origin..HEAD
# DEBUGGING # DEBUGGING
LATEST_SHA=$(curl -s https://api.github.com/repos/ciderapp/Cider/branches/stable | grep sha | cut -d '"' -f 4 | sed 's/v//' | xargs | cut -d' ' -f1 | head -n 1) STABLE_SHA=$(curl -s https://api.github.com/repos/ciderapp/Cider/branches/stable | grep sha | cut -d '"' -f 4 | sed 's/v//' | xargs | cut -d' ' -f1 | head -n 1)
echo $LATEST_SHA echo $STABLE_SHA
COMMITSINCESTABLE=$(git rev-list 099e41264817ead26607e4552317488378146d0e..HEAD --count) COMMITSINCESTABLE=$(git rev-list $STABLE_SHA..$GITHUB_SHA --count)
echo $COMMITSINCESTABLE echo $COMMITSINCESTABLE
CURRENT_VERSION=$(node -p -e "require('./package.json').version") CURRENT_VERSION=$(node -p -e "require('./package.json').version")
echo $CURRENT_VERSION echo $CURRENT_VERSION