mirror of
https://git.codelinaro.org/clo/tools/repo.git
synced 2025-06-05 18:10:13 +08:00
Merge "repo: Repo does not always handle '.' parameter correctly"
This commit is contained in:
@ -628,7 +628,7 @@ class Project(object):
|
||||
self.gitdir = gitdir.replace('\\', '/')
|
||||
self.objdir = objdir.replace('\\', '/')
|
||||
if worktree:
|
||||
self.worktree = worktree.replace('\\', '/')
|
||||
self.worktree = os.path.normpath(worktree.replace('\\', '/'))
|
||||
else:
|
||||
self.worktree = None
|
||||
self.relpath = relpath
|
||||
|
Reference in New Issue
Block a user