File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ shellscript-lint-all: # Lint all shell scripts in this project, do not fail on e
3030 done
3131
3232githooks-config : # Trigger Git hooks on commit that are defined in this repository @Configuration
33+ echo " Running git hooks config"
3334 make _install-dependency name=" pre-commit"
3435 pre-commit install \
3536 --config scripts/config/pre-commit.yaml \
3637 --install-hooks
38+ echo " Run git hooks config"
3739
3840githooks-run : # Run git hooks configured in this repository @Operations
3941 pre-commit run \
@@ -47,7 +49,9 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4749
4850_install-dependencies : # Install all the dependencies listed in .tool-versions
4951 for plugin in $$ (grep ^[a-z] .tool-versions | sed ' s/[[:space:]].*//' ); do
52+ echo " Installing $$ {plugin}"
5053 make _install-dependency name=" $$ {plugin}"
54+ echo " Installed $$ {plugin}"
5155 done
5256
5357clean :: # Remove all generated and temporary files (common) @Operations
You can’t perform that action at this time.
0 commit comments