Skip to content

Commit d1f74df

Browse files
authored
Don't tee the cat (#5129)
1 parent a8a36d9 commit d1f74df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.PHONY: ext
22
ext:
33
@echo " Building extension modules"
4-
@python setup.py build_ext --inplace 2>&1 | tee cat build.log
4+
@python setup.py build_ext --inplace 2>&1 | tee build.log
55

66
.PHONY: extforce
77
extforce:
88
@echo " Force building all extension modules"
9-
@python setup.py build_ext --inplace --force 2>&1 | tee cat build.log
9+
@python setup.py build_ext --inplace --force 2>&1 | tee build.log
1010

1111
.PHONY: lint
1212
lint: srclint actionlint dockerlint

0 commit comments

Comments
 (0)