iosevka: fix quoting issue in buildPhase

caused error when the font family had a space in it
This commit is contained in:
mochie~!
2025-12-06 06:17:06 +01:00
parent 83618d696c
commit aafdd0b739
+1 -1
View File
@@ -121,7 +121,7 @@ buildNpmPackage rec {
runHook preBuild
# pipe to cat to disable progress bar
npm run build --no-update-notifier --targets ttf::$pname -- --jCmd=$NIX_BUILD_CORES --verbosity=9 | cat
npm run build --no-update-notifier --targets ttf::"$pname" -- --jCmd=$NIX_BUILD_CORES --verbosity=9 | cat
runHook postBuild
'';