When copying bundle the symbol links should be kept.

This commit is contained in:
Cheng Zhao 2013-05-13 15:27:49 +08:00
parent fc4dd0aecb
commit 836f29add6

View file

@ -20,7 +20,7 @@ def main():
def copy_binaries():
shutil.copytree(BUNDLE_DIR, os.path.join(DIST_DIR, BUNDLE_NAME))
shutil.copytree(BUNDLE_DIR, os.path.join(DIST_DIR, BUNDLE_NAME), symlinks=True)
def create_zip():