Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
Pass message to AE when no sources are defined (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouke authored Mar 31, 2020
1 parent 7f8fa17 commit 3a1a0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NuKeeper.Abstractions/NuGet/NuGetSources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public NuGetSources(IEnumerable<PackageSource> sources)

if (!items.Any())
{
throw new ArgumentException(nameof(items));
throw new ArgumentException("No package sources defined", nameof(sources));
}

Items = items;
Expand Down

0 comments on commit 3a1a0b3

Please sign in to comment.