projects
/
fusionforge
/
fusionforge.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
project home
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
367b0f1
)
Cope with users creating Bazaar branches at the top of their repositories
author
Roland Mas
<lolando@debian.org>
Wed, 22 May 2013 07:31:54 +0000
(09:31 +0200)
committer
Roland Mas
<lolando@debian.org>
Wed, 22 May 2013 07:31:54 +0000
(09:31 +0200)
src/plugins/scmbzr/common/BzrPlugin.class.php
patch
|
blob
|
history
diff --git
a/src/plugins/scmbzr/common/BzrPlugin.class.php
b/src/plugins/scmbzr/common/BzrPlugin.class.php
index
400215d
..
90f91c8
100644
(file)
--- a/
src/plugins/scmbzr/common/BzrPlugin.class.php
+++ b/
src/plugins/scmbzr/common/BzrPlugin.class.php
@@
-168,7
+168,8
@@
class BzrPlugin extends SCMPlugin {
$line = fgets ($pipe) ;
fclose ($pipe) ;
- if (preg_match ("/^Shared repository/", $line) != 0) {
+ if (preg_match ("/^Shared repository/", $line) != 0
+ || preg_match ("/^Repository branch/", $line) != 0) {
$repo_exists = true ;
}
}