Skip to content

Commit

Permalink
iosevka: correctly set build verbosity and suppress progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
lunik1 committed Dec 13, 2024
1 parent db3eb30 commit fb9154a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/data/fonts/iosevka/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ buildNpmPackage rec {
buildPhase = ''
export HOME=$TMPDIR
runHook preBuild
npm run build --no-update-notifier --targets ttf::$pname -- --jCmd=$NIX_BUILD_CORES --verbose=9
# pipe to cat to disable progress bar
npm run build --no-update-notifier --targets ttf::$pname -- --jCmd=$NIX_BUILD_CORES --verbosity=9 | cat
runHook postBuild
'';

Expand Down

0 comments on commit fb9154a

Please sign in to comment.