From 35b109fe6f42b6853809151e73be96909af7e3f7 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt Date: Thu, 10 Oct 2013 10:03:00 +0200 Subject: [PATCH] byhand-di: accept +debXuZ in versions Reported-by: Adam D. Barratt --- scripts/debian/byhand-di | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/debian/byhand-di b/scripts/debian/byhand-di index 8427a863..45b473b2 100755 --- a/scripts/debian/byhand-di +++ b/scripts/debian/byhand-di @@ -20,8 +20,9 @@ error() { } # Check validity of version number -# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDDx, YYYYMMDD+x and the +b[0-9] on the end -if ! echo "$VERSION" | grep -Eq "^[0-9]{8}(|(\.|\+?[a-z]+)[0-9]+)(\+b[0-9])?$"; then +# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDDx, YYYYMMDD+x, +# YYYYMMDD+debXuZ and the +b[0-9] on the end +if ! echo "$VERSION" | grep -Eq "^[0-9]{8}(|(\.|\+?[a-z]+|\+deb[0-9]+u))[0-9]+(\+b[0-9])?$"; then error "Invalid version: '$VERSION'" fi @@ -55,7 +56,7 @@ if [ -d "$TARGET/$VERSION" ]; then fi # We know the VERSION is sane by here, we just need to make sure we escape the + in +b1 (if any) -# It needs 'g' as well as we may have +$DIST+b[0-9] +# It needs 'g' as well as we may have +$DIST+b[0-9] or +debXuZ+bY VERSIONREGEXP="$(echo $VERSION | sed 's@+@\\\+@g')" # We know all data to be in ./installer-/; see if there's -- 2.39.2