diff options
author | Richard D. Worth <rdworth@gmail.com> | 2011-11-17 12:51:21 -0800 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2011-11-17 12:51:21 -0800 |
commit | d764388a65c5d56be7443f1de52e92876d009430 (patch) | |
tree | 1ce6accf69eb05ebbdcce0b0ca57a5d3c93dc1f8 | |
parent | 69f6f585ae745af9d423151c7665b9f56f36d307 (diff) | |
parent | ea38e15e20bf97163bad043f4f3455f0e2217a4c (diff) | |
download | jquery-ui-d764388a65c5d56be7443f1de52e92876d009430.tar.gz jquery-ui-d764388a65c5d56be7443f1de52e92876d009430.zip |
Merge pull request #511 from basti1253/master
build: removes disturbing error outputs on which call
-rw-r--r-- | build/build.xml | 2 | ||||
-rwxr-xr-x | build/build/minify-js.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml index 1e5ab842b..49568b3cc 100644 --- a/build/build.xml +++ b/build/build.xml @@ -320,7 +320,7 @@ <echo message="Comparing file size with previous build" /> <exec executable="bash"> <arg value="-c" /> - <arg value="wc -c ${size.dir}/* | `which node nodejs` build/sizer.js" /> + <arg value="wc -c ${size.dir}/* | `which node nodejs 2>/dev/null` build/sizer.js" /> </exec> <delete dir="${size.dir}" /> </target> diff --git a/build/build/minify-js.sh b/build/build/minify-js.sh index c94853fa2..2633a2f57 100755 --- a/build/build/minify-js.sh +++ b/build/build/minify-js.sh @@ -1,3 +1,3 @@ #!/bin/bash dir=$(dirname $0) -`which node nodejs` $dir/uglify.js $1 > $2 +`which node nodejs 2> /dev/null` $dir/uglify.js $1 > $2 |