diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-04-05 11:50:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 11:50:45 +0200 |
commit | ec90fc4d1f42db3c5e3c74dc186487d10a28c221 (patch) | |
tree | 4bfed48bc12ec559ee73780310ea8de860bd6c7c /tests/flakes.sh | |
parent | a4a1de69dcc3c6e0c40a093d67b5f20568a5f31e (diff) | |
parent | 5abe3f4aa61f33ac2124a624763e067257541871 (diff) |
Merge pull request #6360 from thufschmitt/flake-check-accept-welcomeText
Allow `welcomeText` when checking a flake template
Diffstat (limited to 'tests/flakes.sh')
-rw-r--r-- | tests/flakes.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/flakes.sh b/tests/flakes.sh index ea629ae70..46e6a7982 100644 --- a/tests/flakes.sh +++ b/tests/flakes.sh @@ -376,6 +376,9 @@ cat > $templatesDir/flake.nix <<EOF trivial = { path = ./trivial; description = "A trivial flake"; + welcomeText = '' + Welcome to my trivial flake + ''; }; default = trivial; }; |