Skip to content

Commit f904bb0

Browse files
authored
Merge pull request #13154 from ethereum/fixReleasePPAScript
Fix release regex and add Ubuntu Kinetic to PPA scripts
2 parents 7e06657 + 080d2f7 commit f904bb0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/deps-ppa/static_z3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ [email protected]
2727
packagename=z3-static
2828
version=4.8.17
2929

30-
DISTRIBUTIONS="focal impish jammy"
30+
DISTRIBUTIONS="focal impish jammy kinetic"
3131

3232
for distribution in $DISTRIBUTIONS
3333
do

scripts/release_ppa.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ else
4848
fi
4949

5050
is_release() {
51-
[[ "${branch}" = "release" ]] || [[ "${branch}" =~ ^v[0-9]+(\.[0-9])*$ ]]
51+
[[ "${branch}" =~ ^v[0-9]+(\.[0-9]+)*$ ]]
5252
}
5353

5454
keyid=379F4801D622CDCF
@@ -57,7 +57,7 @@ packagename=solc
5757

5858
static_build_distribution=impish
5959

60-
DISTRIBUTIONS="focal impish jammy"
60+
DISTRIBUTIONS="focal impish jammy kinetic"
6161

6262
if is_release
6363
then

0 commit comments

Comments
 (0)