Skip to content

Commit

Permalink
dotnetCorePackages.combinePackages: fix bug introduced in #187118
Browse files Browse the repository at this point in the history
  • Loading branch information
GGG-KILLER committed Aug 23, 2022
1 parent bac0c1c commit 93ed660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/dotnet/combine-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
# 3. Something else?
let cli = builtins.head packages;
in
assert lib.assertMsg ((builtins.length packages) < 1)
assert lib.assertMsg ((builtins.length packages) > 0)
''You must include at least one package, e.g
`with dotnetCorePackages; combinePackages [
sdk_3_1 aspnetcore_5_0
Expand Down

0 comments on commit 93ed660

Please sign in to comment.