From c6a388c8377ccb8ffb3a287f8277eaf0a32e428c Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 9 Jun 2022 10:49:43 +0200 Subject: [PATCH] make-snapshot.sh: Don't require a specific PHP release version --- bin/make-snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/make-snapshot.sh b/bin/make-snapshot.sh index f438848..af3134c 100755 --- a/bin/make-snapshot.sh +++ b/bin/make-snapshot.sh @@ -12,7 +12,7 @@ fi LATEST_TAG=$(git for-each-ref refs/tags --sort=-taggerdate --format='%(refname)' --count=1 | awk -F/ '{print $3}') NEXT_VERSION=$(echo "${LATEST_TAG:1}" | awk -F. -v OFS=. '{$3=0}; {++$2}; {print}') -PHP_VERSION=$(echo "" | php 2>/dev/null) +PHP_VERSION=$(echo "" | php 2>/dev/null) if [[ -n $(git branch | grep $BRANCH) ]]; then git branch -D $BRANCH