We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1abef commit e5e15daCopy full SHA for e5e15da
install.py
@@ -65,6 +65,10 @@ def _symlink(src_path: str, dst_path: str) -> None:
65
66
67
def _install_fname(fname: str, src_dir: str, dst_dir: str) -> None:
68
+ """
69
+ pre:: os.path.exists(os.path.join(src_dir, path))
70
+ pre:: os.path.exists(dst_dir)
71
72
src_path = os.path.join(src_dir, fname)
73
dst_path = os.path.join(dst_dir, fname)
74
_symlink(src_path, dst_path)
0 commit comments