aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-04-05 11:50:45 +0200
committerGitHub <noreply@github.com>2022-04-05 11:50:45 +0200
commitec90fc4d1f42db3c5e3c74dc186487d10a28c221 (patch)
tree4bfed48bc12ec559ee73780310ea8de860bd6c7c /src
parenta4a1de69dcc3c6e0c40a093d67b5f20568a5f31e (diff)
parent5abe3f4aa61f33ac2124a624763e067257541871 (diff)
Merge pull request #6360 from thufschmitt/flake-check-accept-welcomeText
Allow `welcomeText` when checking a flake template
Diffstat (limited to 'src')
-rw-r--r--src/nix/flake.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/flake.cc b/src/nix/flake.cc
index 47a380238..ce7dc101a 100644
--- a/src/nix/flake.cc
+++ b/src/nix/flake.cc
@@ -463,7 +463,7 @@ struct CmdFlakeCheck : FlakeCommand
for (auto & attr : *v.attrs) {
std::string name(attr.name);
- if (name != "path" && name != "description")
+ if (name != "path" && name != "description" && name != "welcomeText")
throw Error("template '%s' has unsupported attribute '%s'", attrPath, name);
}
} catch (Error & e) {