We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a03e7a commit 4178e68Copy full SHA for 4178e68
Makefile.in
@@ -31,18 +31,17 @@ else
31
INSIDE_DOCKER :=
32
endif
33
34
-CODE_FILES := \
35
- $(shell \
36
- if type git >/dev/null 2>&1; then \
37
- git ls-files | \
38
- while read filepath; do \
39
- test -f "$$filepath" || continue; \
40
- test -d "$$filepath" & continue; \
41
- test -L "$$filepath" & continue; \
42
- echo "$$filepath"; \
43
- done; \
44
- fi \
45
- )
+CODE_FILES := $(shell \
+ if type git >/dev/null 2>&1; then \
+ git ls-files | \
+ while read filepath; do \
+ test -f "$$filepath" || continue; \
+ test -d "$$filepath" & continue; \
+ test -L "$$filepath" & continue; \
+ echo "$$filepath"; \
+ done; \
+ fi \
+)
46
47
CPANM := cpanm
48
export PIP := pip3
0 commit comments