1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 23:42:43 +01:00

Add trailing commas on addFlag incantations

(cherry picked from commit 06acbd37bd)
This commit is contained in:
Graham Christensen 2025-04-07 17:18:15 -04:00 committed by Mergify
parent d0f98c76f9
commit 29d37eb2db
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)