Loading build.py +4 −1 Original line number Original line Diff line number Diff line Loading @@ -610,7 +610,10 @@ class Bootstrap(): # Create symlinks # Create symlinks for pairs in symlinks: for pairs in symlinks: (src, dst) = pairs (src, dst) = pairs try: os.unlink(dst) os.unlink(dst) except Exception as e: print(e) os.symlink(src, dst) os.symlink(src, dst) # Write to setup complete file so we don't repeat this step # Write to setup complete file so we don't repeat this step Loading Loading
build.py +4 −1 Original line number Original line Diff line number Diff line Loading @@ -610,7 +610,10 @@ class Bootstrap(): # Create symlinks # Create symlinks for pairs in symlinks: for pairs in symlinks: (src, dst) = pairs (src, dst) = pairs try: os.unlink(dst) os.unlink(dst) except Exception as e: print(e) os.symlink(src, dst) os.symlink(src, dst) # Write to setup complete file so we don't repeat this step # Write to setup complete file so we don't repeat this step Loading