diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-28 16:15:10 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-28 16:15:10 +0000 |
commit | 1a63f4df033ee433accb30839145ca48564e2fe6 (patch) | |
tree | 2f53452647627bab212ba07a5e7cc6ad9ca91345 /scripts | |
parent | 3dd774abc28ec1bc41d2c81458620ff1fb7bedc5 (diff) |
reverting 16308: on second thought, don't put the source tarballs in the latest/ listing
svn path=/trunk/; revision=16311
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/create-latest-build-listing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/auto-build/create-latest-build-listing.py b/scripts/auto-build/create-latest-build-listing.py index f0f5a38e..f7d97a88 100755 --- a/scripts/auto-build/create-latest-build-listing.py +++ b/scripts/auto-build/create-latest-build-listing.py @@ -11,7 +11,7 @@ for root, dirs, files in os.walk('/var/www/auto-build/'): if 'latest' in dirs: dirs.remove('latest') for name in files: - m = re.search('^Pd-.*[01]\.[0-9][0-9].*[^5]$', name) + m = re.search('^Pd-[01]\.[0-9][0-9].*[^5]$', name) if m: commonbuildname = re.sub('-20[01][0-9][01][0-9][0-9][0-9]', '', name) commonbuildpath = os.path.join('/var/www/auto-build/latest', commonbuildname) |