test.sh: redirect stderr of python http.server to /dev/null

This commit is contained in:
Johannes 'josch' Schauer 2018-09-23 19:36:35 +02:00
parent 87b9971539
commit c8dbb408d8
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -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