From d3f2050fe3c040e93604c2de151173caaa644cb2 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Thu, 14 Feb 2019 23:33:45 +0100 Subject: [PATCH] fix spurious output during docker_build --- makefile.extra.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.extra.make b/makefile.extra.make index 6ac0cd3..70e48d8 100644 --- a/makefile.extra.make +++ b/makefile.extra.make @@ -8,7 +8,7 @@ serve: echo "Not Implemented" -COMPAT_TEST_FILES = $(shell ls -1 test/*.py | awk '{ printf " compat_"$$0 }') +COMPAT_TEST_FILES = $(shell ls -1 test/*.py 2>/dev/null | awk '{ printf " compat_"$$0 }') compat_test/%.py: test/%.py @mkdir -p compat_test/;