Fall back to USERPROFILE if HOME isn't set. Signed-off-by: Simon Hausmann <shausman@xxxxxxxxxxxxx> Signed-off-by: Marius Storm-Olsen <marius@xxxxxxxxxxxxx> --- contrib/fast-import/git-p4 | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index e3404ca..1f5a56e 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -901,7 +901,8 @@ class P4Sync(Command): % (labelDetails["label"], change)) def getUserCacheFilename(self): - return os.environ["HOME"] + "/.gitp4-usercache.txt" + home = os.environ.get("HOME", os.environ.get("USERPROFILE")) + return home + "/.gitp4-usercache.txt" def getUserMapFromPerforceServer(self): if self.userMapFromPerforceServer: -- 1.5.3.rc0.63.gc956 - 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