Skip to content

Commit c8fe56e

Browse files
committed
Switch the sandbox back to hardlinks.
1 parent 8a2a58b commit c8fe56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/_sandbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main():
2626
print("link", sf)
2727
os.makedirs(dirname(sf), exist_ok=True)
2828
try:
29-
os.symlink(abspath(f), sf)
29+
os.link(abspath(f), sf)
3030
except PermissionError:
3131
shutil.copy(f, sf)
3232

0 commit comments

Comments
 (0)