From f0612a9940eb10d41f97c7e29bfa2f701cf43a7c Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Sun, 6 Feb 2022 17:17:47 -0800 Subject: [PATCH] configureCargoVendoredDepsHook: tweak logging * Make it more obvious exactly which file is being used for vendoring (when a manifest is found) instead of just printing out the parent directory --- pkgs/configureCargoVendoredDepsHook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/configureCargoVendoredDepsHook.sh b/pkgs/configureCargoVendoredDepsHook.sh index 677458e..6d0ce76 100644 --- a/pkgs/configureCargoVendoredDepsHook.sh +++ b/pkgs/configureCargoVendoredDepsHook.sh @@ -9,7 +9,7 @@ configureCargoVendoredDepsHook() { # doing and has its own source replacement going on, it can happily # ignore the changes we are trying to make! if [[ -f "${vendoredDir}/config.toml" ]]; then - echo using config.toml manifest from vendored directory ${vendoredDir} + echo will append ${cargoConfig} with contents of ${vendoredDir}/config.toml cat "${vendoredDir}/config.toml" >>"${cargoConfig}" return fi