Skip to content

Commit 9bb6b70

Browse files
committed
[nix] change layers folders to use lowercase directories
Chisel will generate lowercase directoreise by default now, see: chipsalliance/chisel#4505 Signed-off-by: Qiming Chu <[email protected]>
1 parent d2261a9 commit 9bb6b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/chisel/nix/gcd/rtl.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
, enable-layers ? [ ]
1616
}:
1717
let
18-
processLayer = lib.map (str: "./" + lib.replaceStrings [ "." ] [ "/" ] str);
18+
processLayer = lib.map (str: "./" + lib.replaceStrings [ "." ] [ "/" ] (lib.toLower str));
1919
enableLayersDirs = processLayer enable-layers;
2020
in
2121
stdenvNoCC.mkDerivation {

0 commit comments

Comments
 (0)