Skip to content

Commit c8f47e9

Browse files
committedMar 20, 2025
cascadia-code: put install commands on seperate lines
1 parent d90d9d9 commit c8f47e9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎pkgs/by-name/ca/cascadia-code/package.nix

+7-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ stdenvNoCC.mkDerivation (finalAttrs: {
2020
2121
${
2222
if useVariableFont then
23-
"install -Dm644 ttf/*.ttf -t $out/share/fonts/truetype"
23+
''
24+
install -Dm644 ttf/*.ttf -t $out/share/fonts/truetype
25+
''
2426
else
25-
"install -Dm644 otf/static/*.otf -t $out/share/fonts/opentype && install -Dm644 ttf/static/*.ttf -t $out/share/fonts/truetype"
27+
''
28+
install -Dm644 otf/static/*.otf -t $out/share/fonts/opentype
29+
install -Dm644 ttf/static/*.ttf -t $out/share/fonts/truetype
30+
''
2631
}
2732
2833
runHook postInstall

0 commit comments

Comments
 (0)
Failed to load comments.