We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0216418 commit d882d23Copy full SHA for d882d23
symforce/experimental/caspar/code_generation/library.py
@@ -180,6 +180,8 @@ def generate_kernels(self, out_dir: Path) -> None:
180
@staticmethod
181
def generate_links(out_dir: Path, use_symlinks: bool = True) -> None:
182
for f in Path(caspar.__file__).parent.glob("source/runtime/*"):
183
+ if f.is_dir(): # Skip directories like __pycache__
184
+ continue
185
f_new = out_dir / f.name
186
if use_symlinks:
187
if f_new.exists():
0 commit comments