From: W. Trevor King Date: Thu, 24 Feb 2011 22:34:40 +0000 (-0500) Subject: Work around bzr filelocking issue on Windows. X-Git-Tag: 1.1.0~234 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1e0967ab82d8541413e1dfe4d2e78f1008aa9c5b;p=be.git Work around bzr filelocking issue on Windows. --- diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 570af17..aba6159 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -575,7 +575,7 @@ class VCS (libbe.storage.base.VersionedStorage): if self._detect(self.repo) == False: raise VCSUnableToRoot(self) root = self._vcs_root(self.repo) - self.repo = os.path.abspath(root) + self.repo = os.path.realpath(root) if os.path.isdir(self.repo) == False: self.repo = os.path.dirname(self.repo) self.be_dir = os.path.join( diff --git a/libbe/storage/vcs/bzr.py b/libbe/storage/vcs/bzr.py index a00e3ac..9464d1d 100644 --- a/libbe/storage/vcs/bzr.py +++ b/libbe/storage/vcs/bzr.py @@ -156,7 +156,12 @@ class Bzr(base.VCS): path = os.path.join(self.repo, path) cmd = bzrlib.builtins.cmd_add() cmd.outf = StringIO.StringIO() - cmd.run(file_list=[path], file_ids_from=self.repo) + kwargs = {'file_ids_from': self.repo} + if self.repo == os.path.realpath(os.getcwd()): + # Work around bzr file locking on Windows. + # See: https://lists.ubuntu.com/archives/bazaar/2011q1/071705.html + kwargs.pop('file_ids_from') + cmd.run(file_list=[path], **kwargs) if self.version_cmp(2,2,0) < 0: cmd.cleanup_now()