Skip to content

Commit

Permalink
Critical bugfix for PDK building
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Oct 14, 2024
1 parent 0090420 commit 7458169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion volare/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.19.1"
__version__ = "0.19.2"

if __name__ == "__main__":
print(__version__, end="")
2 changes: 1 addition & 1 deletion volare/build/sky130.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def run_sh(script, log_to):
def install_sky130(build_directory, pdk_root, version):
console = Console()
with console.status("Adding build to list of installed versions…"):
version_directory = Version("sky130", version).get_dir(pdk_root)
version_directory = Version(version, "sky130").get_dir(pdk_root)
if (
os.path.exists(version_directory)
and len(os.listdir(version_directory)) != 0
Expand Down

0 comments on commit 7458169

Please sign in to comment.