From abebf5f5916367d4fdd9ba684482612e5e8d789f Mon Sep 17 00:00:00 2001 From: David McFarland Date: Tue, 18 Oct 2022 23:14:03 -0300 Subject: [PATCH] nuget-to-nix: fix warning when package is installed from sdk --- pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh b/pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh index 760350ab0517..390c96751fac 100755 --- a/pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh +++ b/pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh @@ -53,7 +53,7 @@ for package in *; do # If multiple remote sources are enabled, nuget will try them all # concurrently and use the one that responds first. We always use the # first source that has the package. - echo "$package $version is available on $url, but was downloaded from ${base_addresses[$used_source]}$package/$version/$package.$version.nupkg" 1>&2 + echo "$package $version is available at $url, but was restored from $used_source" 1>&2 found=true break else