diff options
-rw-r--r-- | ipsutils/tasks.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipsutils/tasks.py b/ipsutils/tasks.py index ec69814..b8414ec 100644 --- a/ipsutils/tasks.py +++ b/ipsutils/tasks.py @@ -405,7 +405,8 @@ class Package(task.Task): else:
shutil.copytree(self.cls.env_pkg['BUILDPROTO'], \
os.path.join(self.destination, \
- os.path.basename(self.cls.env_pkg['BUILDPROTO'])))
+ os.path.basename(self.cls.env_pkg['BUILDPROTO'])), \
+ symlinks=True)
shutil.copy2(self.cls.env_meta['STAGE4'], self.destination)
return 0
|