forked from ungleich-public/cdist
also need .cdist in relative paths
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
53737aad3a
commit
5f4a85f6ad
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class Object(object):
|
||||||
self.base_path = base_path
|
self.base_path = base_path
|
||||||
self.object_id = object_id
|
self.object_id = object_id
|
||||||
self.name = os.path.join(self.type.name, self.object_id)
|
self.name = os.path.join(self.type.name, self.object_id)
|
||||||
self.path = os.path.join(self.type.path, self.object_id)
|
self.path = os.path.join(self.type.path, self.object_id, DOT_CDIST)
|
||||||
self.absolute_path = os.path.join(self.base_path, self.path, DOT_CDIST)
|
self.absolute_path = os.path.join(self.base_path, self.path, DOT_CDIST)
|
||||||
self.code_local_path = os.path.join(self.path, "code-local")
|
self.code_local_path = os.path.join(self.path, "code-local")
|
||||||
self.code_remote_path = os.path.join(self.path, "code-remote")
|
self.code_remote_path = os.path.join(self.path, "code-remote")
|
||||||
|
|
Loading…
Reference in a new issue