]> granicus.if.org Git - handbrake/commitdiff
Fix the release/developer detection in configure.py 0.9.4
authoreddyg <eddyg.hb@myreflection.org>
Mon, 23 Nov 2009 21:17:39 +0000 (21:17 +0000)
committereddyg <eddyg.hb@myreflection.org>
Mon, 23 Nov 2009 21:17:39 +0000 (21:17 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2964 b64f7644-9d1e-0410-96f1-a4d463321fa5

make/configure.py

index 9580bfbb1a23b1c8ad5f0a6de782e1279debc5a7..a12d380c6ed42a9b2ee1d09e1c058e667b37bdd8 100644 (file)
@@ -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'