Skip to content

Commit fc0ea8e

Browse files
committed
ci: Removing obsolete shell wrapping
Signed-off-by: Vincent Boutour <[email protected]>
1 parent b8e3635 commit fc0ea8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ init:
5757
## format: Format code. e.g Prettier (js), format (golang)
5858
.PHONY: format
5959
format:
60-
$(shell find . -name "*.go" -exec goimports -w {} +)
61-
$(shell find . -name "*.go" -exec gofumpt -w {} +)
60+
find . -name "*.go" -exec goimports -w {} \+
61+
find . -name "*.go" -exec gofumpt -w {} \+
6262

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

0 commit comments

Comments
 (0)