mirror of
https://github.com/frej/fast-export.git
synced 2026-03-17 23:10:11 +01:00
Fix typo in listExistingP4Branches that broke sync.
This commit is contained in:
4
git-p4
4
git-p4
@@ -846,8 +846,8 @@ class P4Sync(Command):
|
||||
cmdline += " --branches"
|
||||
|
||||
for line in read_pipe_lines(cmdline):
|
||||
lie = line.strip()
|
||||
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"):
|
||||
line = line.strip()
|
||||
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD"):
|
||||
continue
|
||||
|
||||
if self.importIntoRemotes:
|
||||
|
||||
Reference in New Issue
Block a user