Need to expand symlinks when checking if the p4 client is misconfigured for the local git dir. Signed-off-by: Kevin Green <Kevin.Green@xxxxxxxxxxxxxxxxx> --- git-p4import.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-p4import.py b/git-p4import.py index 0f3d97b..ad15708 100644 --- a/git-p4import.py +++ b/git-p4import.py @@ -312,7 +312,7 @@ for o, a in opts: p4.authors(a) localdir = git.basedir() -if p4.where()[:len(localdir)] != localdir: +if os.path.realpath(os.path.dirname(p4.where())) != os.path.realpath(localdir): report(1, "**WARNING** Appears p4 client is misconfigured") report(1, " for sync from %s to %s" % (p4.repopath, localdir)) if ignore_warnings != True: -- 1.5.2.1 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html