mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
eval-tests: Fix warnings
This commit is contained in:
parent
87673d7c13
commit
836c38aa2a
1 changed files with 3 additions and 3 deletions
|
@ -17,13 +17,13 @@ rec {
|
|||
};
|
||||
|
||||
empty = mkFlake
|
||||
{ self = { }; }
|
||||
{ inputs.self = { }; }
|
||||
{
|
||||
systems = [ ];
|
||||
};
|
||||
|
||||
example1 = mkFlake
|
||||
{ self = { }; }
|
||||
{ inputs.self = { }; }
|
||||
{
|
||||
systems = [ "a" "b" ];
|
||||
perSystem = { system, ... }: {
|
||||
|
@ -32,7 +32,7 @@ rec {
|
|||
};
|
||||
|
||||
easyOverlay = mkFlake
|
||||
{ self = { }; }
|
||||
{ inputs.self = { }; }
|
||||
{
|
||||
imports = [ flake-parts.flakeModules.easyOverlay ];
|
||||
systems = [ "a" ];
|
||||
|
|
Loading…
Reference in a new issue