From 47efd7ba710d51cac8eb6f2b04ae468fea07d27d Mon Sep 17 00:00:00 2001 From: eddyg Date: Mon, 23 Nov 2009 21:17:39 +0000 Subject: [PATCH] Fix the release/developer detection in configure.py git-svn-id: svn://localhost/HandBrake/trunk@2964 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- make/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/configure.py b/make/configure.py index 9580bfbb..a12d380c 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' -- 2.11.0