Skip to content

Commit 19de464

Browse files
committed
hotfix: minor logic bug
1 parent 9a8369d commit 19de464

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "volare"
3-
version = "0.20.5"
3+
version = "0.20.6"
44
description = "An PDK builder/version manager for PDKs in the open_pdks format"
55
authors = ["Efabless Corporation and Contributors <[email protected]>"]
66
readme = "Readme.md"

volare/build/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def is_ancestor(commit: str):
7979
download_script_ok = is_ancestor(
8080
"ebffedd16788db327af050ac01c3fb1558ebffd1"
8181
) # download script fix
82-
if download_script_ok:
82+
if not download_script_ok:
8383
print("Replacing download.sh…")
8484
session = GitHubSession()
8585
r = session.get(

0 commit comments

Comments
 (0)