Skip to content

Commit

Permalink
Merge pull request #10054 from syvb/channel-unpack-count
Browse files Browse the repository at this point in the history
Say how many channels were unpacked in nix-channel
  • Loading branch information
edolstra authored Feb 21, 2024
2 parents ff4fa4d + 60eeacc commit 9ae665b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nix-channel/nix-channel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static void update(const StringSet & channelNames)

// Unpack the channel tarballs into the Nix store and install them
// into the channels profile.
std::cerr << "unpacking channels...\n";
std::cerr << "unpacking " << exprs.size() << " channels...\n";
Strings envArgs{ "--profile", profile, "--file", unpackChannelPath, "--install", "--remove-all", "--from-expression" };
for (auto & expr : exprs)
envArgs.push_back(std::move(expr));
Expand Down

0 comments on commit 9ae665b

Please sign in to comment.