Skip to content

Commit

Permalink
ci: Removing obsolete shell wrapping
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Nov 22, 2022
1 parent 0493ba2 commit f45d229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ init:
## format: Format code. e.g Prettier (js), format (golang)
.PHONY: format
format:
$(shell find . -name "*.go" -exec goimports -w {} +)
$(shell find . -name "*.go" -exec gofumpt -w {} +)
find . -name "*.go" -exec goimports -w {} \+
find . -name "*.go" -exec gofumpt -w {} \+

## style: Check lint, code styling rules. e.g. pylint, phpcs, eslint, style (java) etc ...
.PHONY: style
Expand Down

0 comments on commit f45d229

Please sign in to comment.