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:
parent
596389a5f6
commit
06acbd37bd
19 changed files with 64 additions and 62 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue