From 0f36ddd649d5646e2955ff219524a31f1707f61e Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 8 Sep 2011 15:54:10 +0200 Subject: [PATCH] support object dir Signed-off-by: Nico Schottelius --- bin/cdist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/cdist b/bin/cdist index 57df474d..d7e2f697 100755 --- a/bin/cdist +++ b/bin/cdist @@ -86,6 +86,8 @@ class Cdist: self.global_explorer_out_dir = os.path.join(self.out_dir, "explorer") os.mkdir(self.global_explorer_out_dir) + self.object_dir = os.path.join(self.out_dir, "object") + # Setup binary directory + contents self.bin_dir = os.path.join(self.out_dir, "bin") os.mkdir(self.bin_dir)