lilypond-with-fonts: fix typos
In development, I experimented with file globs, for loops and making the supplementary fonts optional. As such, the original PR ended up with a dysfunctional combination. This commit fully adopts the for loop approach, which I prefer, since failing matches, e.g. missing supplementary-fonts/, won't cause a failure.
This commit is contained in:
parent
e206d5ab63
commit
90c5c9d8c9
@ -24,11 +24,11 @@ let
|
|||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
for f in {otf,supplementary-fonts}/**.{o,t}tf; do
|
for f in {otf,supplementary-fonts}/**.{o,t}tf; do
|
||||||
install -Dt $out/otf -m755 otf/*
|
install -Dt $out/otf -m755 $f
|
||||||
done
|
done
|
||||||
|
|
||||||
for f in svg/**.{svg,woff}; do
|
for f in svg/**.{svg,woff}; do
|
||||||
install -Dt $out/svg -m755 svg/*
|
install -Dt $out/svg -m755 $f
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user