From d43869d70282fd9c8499208ad28fb79bb99f3f7b Mon Sep 17 00:00:00 2001 From: "adam.danischewski@gmail.com" Date: Sat, 26 Dec 2015 12:57:59 -0500 Subject: Updated the starting of the php internal webserver to suppress messages in the config test. --- config.bsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.bsh b/config.bsh index f3419db..2b32fff 100755 --- a/config.bsh +++ b/config.bsh @@ -33,7 +33,7 @@ declare -r FAV_WEBBROWSER=firefox ### CHANGE THIS IF NECESSARY declare -r DISCARD_DEV="/dev/random" ### CHANGE IF NECESSARY,/dev/null echo "Starting php built-in web server ... " -php -S localhost:${PHP_PORT} -t / $(pwd)/routing.php & +php -S localhost:${PHP_PORT} -t / $(pwd)/routing.php &>"${DISCARD_DEV}" & echo "Checking for ${FAV_WEBBROWSER} and loading a test url: " echo " ${TESTURL} ..." which "${FAV_WEBBROWSER}" &>"${DISCARD_DEV}" && "${FAV_WEBBROWSER}" "${TESTURL}" || echo "Point your favorite web browser at: ${TESTURL}" -- cgit v1.2.3