Skip to content

Commit 4178e68

Browse files
committed
updated Makefile.in
1 parent 5a03e7a commit 4178e68

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

Makefile.in

+11-12
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,17 @@ else
3131
INSIDE_DOCKER :=
3232
endif
3333

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-
)
34+
CODE_FILES := $(shell \
35+
if type git >/dev/null 2>&1; then \
36+
git ls-files | \
37+
while read filepath; do \
38+
test -f "$$filepath" || continue; \
39+
test -d "$$filepath" & continue; \
40+
test -L "$$filepath" & continue; \
41+
echo "$$filepath"; \
42+
done; \
43+
fi \
44+
)
4645

4746
CPANM := cpanm
4847
export PIP := pip3

0 commit comments

Comments
 (0)