1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-10 20:46:01 +01:00

Add trailing commas on addFlag incantations

This commit is contained in:
Graham Christensen 2025-04-07 17:18:15 -04:00
parent 596389a5f6
commit 06acbd37bd
19 changed files with 64 additions and 62 deletions

View file

@ -237,12 +237,13 @@ void StorePathCommand::run(ref<Store> store, StorePaths && storePaths)
MixProfile::MixProfile()
{
addFlag(
{.longName = "profile",
addFlag({
.longName = "profile",
.description = "The profile to operate on.",
.labels = {"path"},
.handler = {&profile},
.completer = completePath});
.completer = completePath,
});
}
void MixProfile::updateProfile(const StorePath & storePath)