From 8f4200d165b73db63dc277e9984a480984415593 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Wed, 14 Aug 2024 11:16:23 -0300 Subject: [PATCH] installShellFiles: move setup script to the same directory So that it can be migrated to by-name later. --- pkgs/build-support/install-shell-files/default.nix | 4 ++-- .../setup-hook.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/build-support/{setup-hooks/install-shell-files.sh => install-shell-files/setup-hook.sh} (100%) diff --git a/pkgs/build-support/install-shell-files/default.nix b/pkgs/build-support/install-shell-files/default.nix index d50661ddc65d..00f3caa7f721 100644 --- a/pkgs/build-support/install-shell-files/default.nix +++ b/pkgs/build-support/install-shell-files/default.nix @@ -1,8 +1,8 @@ { makeSetupHook, tests }: -# See the header comment in ../setup-hooks/install-shell-files.sh for example usage. +# See the header comment in ./setup-hook.sh for example usage. let - setupHook = makeSetupHook { name = "install-shell-files"; } ../setup-hooks/install-shell-files.sh; + setupHook = makeSetupHook { name = "install-shell-files"; } ./setup-hook.sh; in setupHook.overrideAttrs (oldAttrs: { diff --git a/pkgs/build-support/setup-hooks/install-shell-files.sh b/pkgs/build-support/install-shell-files/setup-hook.sh similarity index 100% rename from pkgs/build-support/setup-hooks/install-shell-files.sh rename to pkgs/build-support/install-shell-files/setup-hook.sh