Skip to content

Commit

Permalink
hotfix: ignore .git directories in submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Jan 8, 2025
1 parent 5edd843 commit 28e1a20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "volare"
version = "0.20.2"
version = "0.20.3"
description = "An PDK builder/version manager for PDKs in the open_pdks format"
authors = ["Efabless Corporation and Contributors <[email protected]>"]
readme = "Readme.md"
Expand Down
1 change: 1 addition & 0 deletions volare/build/ihp-sg13g2.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def build_ihp(build_directory, ihp_path):
shutil.copytree(
os.path.join(ihp_path, "ihp-sg13g2"),
os.path.join(build_directory, "ihp-sg13g2"),
ignore=lambda dir, files: files if ".git" in os.path.split(dir) else [".git", ".DS_Store"]
)


Expand Down

0 comments on commit 28e1a20

Please sign in to comment.