File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1818 - id : pretty-format-json
1919 exclude : |
2020 (?x)^(
21- package-lock.json|
21+ package( -lock)?\ .json$ |
2222 packages/event-schemas/schemas/[^/]+/[^/]+\.json
2323 )$
2424 args : ['--autofix']
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4646 asdf install ${name} $(or ${version},)
4747
4848_install-dependencies : # Install all the dependencies listed in .tool-versions
49- for plugin in $$ (grep ^[a-z] .tool-versions | sed ' s/[[:space:]].*// ' ); do
50- make _install-dependency name= " $$ {plugin}"
49+ for plugin in $$ (grep ' ^[a-z]' .tool-versions | cut -f1 -d ' ' ); do \
50+ echo " Installing $$ {plugin}... " ; \
5151 done
5252
5353clean :: # Remove all generated and temporary files (common) @Operations
You can’t perform that action at this time.
0 commit comments