summaryrefslogtreecommitdiff
path: root/lorry
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-20 10:50:49 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-20 10:52:23 +0100
commit0940ca623b9955304e759e427331005e721feabd (patch)
tree39392f384e57716293e07297567c5f9c18bc62f9 /lorry
parent4f4c0ceea8bee0cec96a263f23e7d33aa271ef76 (diff)
downloadlorry-0940ca623b9955304e759e427331005e721feabd.tar.gz
lorry: use absolute path for working area
Diffstat (limited to 'lorry')
-rwxr-xr-xlorry2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorry b/lorry
index 21f71e9..65f88b9 100755
--- a/lorry
+++ b/lorry
@@ -85,7 +85,7 @@ class Lorry(cliapp.Application):
if self.settings['working-area'] == '' :
print 'No working area defined going to use "workd" directory'
- self.settings['working-area'] = 'workd'
+ self.settings['working-area'] = os.path.abspath('workd')
if not os.path.exists(self.settings['working-area']):
os.makedirs(self.settings['working-area'])