summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreddyg <[email protected]>2009-11-23 21:17:39 +0000
committereddyg <[email protected]>2009-11-23 21:17:39 +0000
commitadcd8975d7222bb5c58d2ae5435e02acd1875e0b (patch)
tree0237e0c515ceaaec60d4b07328debcd1f5ced311
parent87c480a5afa71db85a3f1c1e210a7e129f4ec26f (diff)
Fix the release/developer detection in configure.py0.9.4
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2964 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index 9580bfbb1..a12d380c6 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -630,7 +630,7 @@ class RepoProbe( ShellProbe ):
if self.uuid == 'b64f7644-9d1e-0410-96f1-a4d463321fa5':
self.official = 1
m = re.match( '([^:]+)://([^/]+)/(.+)', self.url )
- if m and re.match( 'tags/', m.group( 3 )):
+ if m and re.match( '.*tags/.*', m.group( 3 )):
self.type = 'release'
else:
self.type = 'developer'