Skip to content

Commit

Permalink
Update submodule, fix logic bug, revert colab-env merge mishap
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Jan 23, 2024
1 parent c10190a commit da12468
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions nix/colab-env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
{
system,
openlane,
tkinter,
python3,
symlinkJoin,
}:
with pkgs;
symlinkJoin {
name = "openlane-colab-env";
paths = openlane.includedTools ++ [python3.pkgs.tkinter];
}
symlinkJoin {
name = "openlane-colab-env";
paths = openlane.includedTools;
}
2 changes: 1 addition & 1 deletion openlane/config/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def create_config(
exit(1)
source_rtl_key = "VERILOG_FILES"
if not functools.reduce(
lambda acc, x: acc and (x.endswith(".sv") or x.endswith(".v")), source_rtl
lambda acc, x: acc and (x.endswith(".sv") or x.endswith(".v")), source_rtl, True
):
print(
"Only Verilog/SystemVerilog files are supported by create-config.",
Expand Down
2 changes: 1 addition & 1 deletion test/steps/all

0 comments on commit da12468

Please sign in to comment.