From d9ca01b99b8476719e958e0c6ec0a9fcda348e51 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 22 Dec 2014 20:32:58 +0000 Subject: [PATCH] backend.py: Change default lock directory. All of the other state things end up under the working tree, so this should too. --- backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.py b/backend.py index d6fac78..576486c 100644 --- a/backend.py +++ b/backend.py @@ -37,7 +37,7 @@ import util as U CONF.DEFAULTS.update( ## A directory in which we can create lockfiles. - LOCKDIR = OS.path.join(ENV['HOME'], 'var', 'lock', 'chpwd')) + LOCKDIR = OS.path.join(HOME, 'lock')) ###-------------------------------------------------------------------------- ### Utilities. -- 2.11.0