зеркало из https://github.com/microsoft/git.git
Fix support for "depot-path" in older git-p4 imports
Signed-off-by: Simon Hausmann <shausman@trolltech.com>
This commit is contained in:
Родитель
7530a40ce2
Коммит
845b42cb6c
|
@ -153,7 +153,10 @@ def extractSettingsGitLog(log):
|
|||
|
||||
values[key] = val
|
||||
|
||||
values['depot-paths'] = values.get("depot-paths").split(',')
|
||||
paths = values.get("depot-paths")
|
||||
if not paths:
|
||||
paths = values.get("depot-path")
|
||||
values['depot-paths'] = paths.split(',')
|
||||
return values
|
||||
|
||||
def gitBranchExists(branch):
|
||||
|
|
Загрузка…
Ссылка в новой задаче