1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

fetch-npm-deps: be less noisy

Before every package in node_modules was printed. Lets be a bit more
quiet and drop that.
This commit is contained in:
Sandro Jäckel 2024-08-09 15:38:07 +02:00 committed by Winter
parent 7d01494bff
commit f4e18f55ef

View file

@ -244,8 +244,6 @@ fn main() -> anyhow::Result<()> {
cache.init()?;
packages.into_par_iter().try_for_each(|package| {
eprintln!("{}", package.name);
let tarball = package
.tarball()
.map_err(|e| anyhow!("couldn't fetch {} at {}: {e:?}", package.name, package.url))?;