mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00: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:
parent
7d01494bff
commit
f4e18f55ef
|
@ -244,8 +244,6 @@ fn main() -> anyhow::Result<()> {
|
||||||
cache.init()?;
|
cache.init()?;
|
||||||
|
|
||||||
packages.into_par_iter().try_for_each(|package| {
|
packages.into_par_iter().try_for_each(|package| {
|
||||||
eprintln!("{}", package.name);
|
|
||||||
|
|
||||||
let tarball = package
|
let tarball = package
|
||||||
.tarball()
|
.tarball()
|
||||||
.map_err(|e| anyhow!("couldn't fetch {} at {}: {e:?}", package.name, package.url))?;
|
.map_err(|e| anyhow!("couldn't fetch {} at {}: {e:?}", package.name, package.url))?;
|
||||||
|
|
Loading…
Reference in a new issue