summary refs log tree commit diff
path: root/pkgs/build-support/dotnet
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2022-10-18 23:14:03 -0300
committerDavid McFarland <corngood@gmail.com>2022-10-18 23:42:46 -0300
commitabebf5f5916367d4fdd9ba684482612e5e8d789f (patch)
tree251d5ecdd929f146d4a4a5e4f163ec12ca81eecf /pkgs/build-support/dotnet
parent824866a5dc33e4e21b5744233e4e9dafc47b60a7 (diff)
downloadnixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar.gz
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar.bz2
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar.lz
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar.xz
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.tar.zst
nixpkgs-abebf5f5916367d4fdd9ba684482612e5e8d789f.zip
nuget-to-nix: fix warning when package is installed from sdk
Diffstat (limited to 'pkgs/build-support/dotnet')
-rwxr-xr-xpkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh2
1 files changed, 1 insertions, 1 deletions
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 760350ab051..390c96751fa 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