Skip to content

Commit 7458169

Browse files
committed
Critical bugfix for PDK building
1 parent 0090420 commit 7458169

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

volare/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
__version__ = "0.19.1"
14+
__version__ = "0.19.2"
1515

1616
if __name__ == "__main__":
1717
print(__version__, end="")

volare/build/sky130.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def run_sh(script, log_to):
284284
def install_sky130(build_directory, pdk_root, version):
285285
console = Console()
286286
with console.status("Adding build to list of installed versions…"):
287-
version_directory = Version("sky130", version).get_dir(pdk_root)
287+
version_directory = Version(version, "sky130").get_dir(pdk_root)
288288
if (
289289
os.path.exists(version_directory)
290290
and len(os.listdir(version_directory)) != 0

0 commit comments

Comments
 (0)