detect branch name from local directory name for subversion projects
This commit is contained in:
parent
0a6517c2b5
commit
1e1b001b61
1 changed files with 2 additions and 10 deletions
|
@ -35,9 +35,7 @@ class Subversion(BaseProject):
|
||||||
return u(self.info['Repository Root'].split('/')[-1])
|
return u(self.info['Repository Root'].split('/')[-1])
|
||||||
|
|
||||||
def branch(self):
|
def branch(self):
|
||||||
if self.base:
|
return u(self.info['URL'].split('/')[-1])
|
||||||
u(os.path.basename(self.base))
|
|
||||||
return None
|
|
||||||
|
|
||||||
def _find_binary(self):
|
def _find_binary(self):
|
||||||
if self.binary_location:
|
if self.binary_location:
|
||||||
|
@ -70,17 +68,11 @@ class Subversion(BaseProject):
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
if stdout:
|
if stdout:
|
||||||
interesting = [
|
|
||||||
'Repository Root',
|
|
||||||
'Repository UUID',
|
|
||||||
'URL',
|
|
||||||
]
|
|
||||||
for line in stdout.splitlines():
|
for line in stdout.splitlines():
|
||||||
if isinstance(line, bytes):
|
if isinstance(line, bytes):
|
||||||
line = bytes.decode(line)
|
line = bytes.decode(line)
|
||||||
line = line.split(': ', 1)
|
line = line.split(': ', 1)
|
||||||
if line[0] in interesting:
|
info[line[0]] = line[1]
|
||||||
info[line[0]] = line[1]
|
|
||||||
return info
|
return info
|
||||||
|
|
||||||
def _find_project_base(self, path, found=False):
|
def _find_project_base(self, path, found=False):
|
||||||
|
|
Loading…
Reference in a new issue