Skip to content

Commit

Permalink
hotfix: minor logic bug
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Jan 28, 2025
1 parent 9a8369d commit 19de464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.5"
version = "0.20.6"
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
2 changes: 1 addition & 1 deletion volare/build/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def is_ancestor(commit: str):
download_script_ok = is_ancestor(
"ebffedd16788db327af050ac01c3fb1558ebffd1"
) # download script fix
if download_script_ok:
if not download_script_ok:
print("Replacing download.sh…")
session = GitHubSession()
r = session.get(
Expand Down

0 comments on commit 19de464

Please sign in to comment.