diff options
author | Tobias Markmann <tm@ayena.de> | 2018-05-04 08:43:21 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2018-05-04 08:43:21 (GMT) |
commit | a74aa7d27f6f5b1ddcb152fb69d00044594374af (patch) | |
tree | 5a69024d8734ced92f8baa87a0eb18b25ce6884a /BuildTools | |
parent | b4cec19bdc4f0fb8f45c66048882b16a4b9617c9 (diff) | |
download | swift-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
Diffstat (limited to 'BuildTools')
-rwxr-xr-x | BuildTools/GenerateAppCastFeeds.py | 2 |
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) |