commit | 163fdbf2fd6ac8bb1f1e41fb74e68261badce32d | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Fri Jul 31 18:01:32 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jul 31 18:01:32 2015 +0000 |
tree | f40f31fd8e72f30e66c471a29b6af1cb86610819 | |
parent | 555be547903a3077de8fa4e0d3dfd3d9202ddc10 [diff] | |
parent | 2a3e15217ab986abe457808a4f2e35504ded535a [diff] |
Merge "Fix _ReferenceGitDir symlinking"
diff --git a/project.py b/project.py index 868425c..9cb7542 100644 --- a/project.py +++ b/project.py
@@ -2347,10 +2347,11 @@ if copy_all: to_copy = os.listdir(gitdir) + dotgit = os.path.realpath(dotgit) for name in set(to_copy).union(to_symlink): try: src = os.path.realpath(os.path.join(gitdir, name)) - dst = os.path.realpath(os.path.join(dotgit, name)) + dst = os.path.join(dotgit, name) if os.path.lexists(dst): continue