summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2018-05-04 08:43:21 (GMT)
committerTobias Markmann <tm@ayena.de>2018-05-04 08:43:21 (GMT)
commita74aa7d27f6f5b1ddcb152fb69d00044594374af (patch)
tree5a69024d8734ced92f8baa87a0eb18b25ce6884a
parentb4cec19bdc4f0fb8f45c66048882b16a4b9617c9 (diff)
downloadswift-a74aa7d27f6f5b1ddcb152fb69d00044594374af.zip
swift-a74aa7d27f6f5b1ddcb152fb69d00044594374af.tar.bz2
Fix version regex for dev builds in app cast generation script
Test-Information: Ran script on the server and it now includes the latest alpha2 dev builds. Change-Id: I3a7740d43f7c12473eb640b66469fbf0d2438a0a
-rwxr-xr-xBuildTools/GenerateAppCastFeeds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/GenerateAppCastFeeds.py b/BuildTools/GenerateAppCastFeeds.py
index 8135134..e7493df 100755
--- a/BuildTools/GenerateAppCastFeeds.py
+++ b/BuildTools/GenerateAppCastFeeds.py
@@ -148,6 +148,6 @@ writeAppcastFile(filename=os.path.join(args.outputFolder, "swift-testing-appcast
writeAppcastFile(filename=os.path.join(args.outputFolder, "swift-development-appcast-mac.xml"),
title="Swift Development Releases",
description="",
- regexPattern="^\d+(\.\d+)?(\.\d+)?(alpha)?(beta\d+)?(rc\d+)?(-dev\d+)?$",
+ regexPattern="^\d+(\.\d+)?(\.\d+)?(alpha\d*)?(beta\d+)?(rc\d+)?(-dev\d+)?$",
appcastURL=urlparse.urljoin(args.downloadsURL, "swift-development-appcast-mac.xml"),
releases=automaticReleases)