From c8dbb408d8751640ec804695df8fe54fccd14f16 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Sun, 23 Sep 2018 19:36:35 +0200 Subject: [PATCH] test.sh: redirect stderr of python http.server to /dev/null --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index e1ee486..8ae9d1d 100755 --- a/test.sh +++ b/test.sh @@ -29,7 +29,7 @@ fi trap 'kill $pid' INT QUIT TERM EXIT cd mirror -python3 -m http.server 8000 & pid=$! +python3 -m http.server 8000 2>/dev/null & pid=$! cd - # wait for the server to start