From cbe92347efc14888ff6fd21a2de22d59d7dbce7e Mon Sep 17 00:00:00 2001 From: beorn7 Date: Thu, 5 Mar 2015 14:26:19 +0100 Subject: [PATCH] Fix embed-static.sh. Some versions of the cd command print out the directory they have changed into. --- utility/embed-static.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/embed-static.sh b/utility/embed-static.sh index f14849680..b16869eea 100755 --- a/utility/embed-static.sh +++ b/utility/embed-static.sh @@ -11,7 +11,7 @@ ORIGINAL_PWD=${PWD} for dir in $@ do - cd "${dir}" + cd "${dir}" > /dev/null echo "\"$(basename ${dir})\": {" # Do not embed map files and the non-minified bootstrap files.