Skip to content

Commit 90477e3

Browse files
Update init.mk
1 parent aa98de3 commit 90477e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/init.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ shellscript-lint-all: # Lint all shell scripts in this project, do not fail on e
3030
done
3131

3232
githooks-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

3840
githooks-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

5357
clean:: # Remove all generated and temporary files (common) @Operations

0 commit comments

Comments
 (0)