From c3c0fa05fbfa5ab9b7a1cf50b3855faf7d51f135 Mon Sep 17 00:00:00 2001 From: mdarocha Date: Fri, 5 Aug 2022 15:40:43 +0200 Subject: [PATCH] dotnet-sdk: rename print-hashes.sh to update.sh New name better reflects its functionality --- pkgs/development/compilers/dotnet/default.nix | 2 +- .../development/compilers/dotnet/{print-hashes.sh => update.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/development/compilers/dotnet/{print-hashes.sh => update.sh} (100%) diff --git a/pkgs/development/compilers/dotnet/default.nix b/pkgs/development/compilers/dotnet/default.nix index e2dba31a6f99..b983481477c8 100644 --- a/pkgs/development/compilers/dotnet/default.nix +++ b/pkgs/development/compilers/dotnet/default.nix @@ -14,7 +14,7 @@ let buildNetSdk = attrs: buildDotnet (attrs // { type = "sdk"; }); }; - ## Files in versions/ are generated automatically by print-hashes.sh ## + ## Files in versions/ are generated automatically by update.sh ## dotnet_3_1 = import ./versions/3.1.nix (buildAttrs // { icu = icu70; }); dotnet_5_0 = import ./versions/5.0.nix (buildAttrs // { inherit icu; }); dotnet_6_0 = import ./versions/6.0.nix (buildAttrs // { inherit icu; }); diff --git a/pkgs/development/compilers/dotnet/print-hashes.sh b/pkgs/development/compilers/dotnet/update.sh similarity index 100% rename from pkgs/development/compilers/dotnet/print-hashes.sh rename to pkgs/development/compilers/dotnet/update.sh