From 30446f93406299ef90113c87ab1334e52db984e1 Mon Sep 17 00:00:00 2001 From: "Richard D. Worth" Date: Thu, 17 Nov 2011 12:51:21 -0800 Subject: [PATCH] Merge pull request #511 from basti1253/master build: removes disturbing error outputs on which call(cherry picked from commit d764388a65c5d56be7443f1de52e92876d009430) --- build/build.xml | 2 +- build/build/minify-js.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.xml b/build/build.xml index aef5e5fb3..fec10a1a7 100644 --- a/build/build.xml +++ b/build/build.xml @@ -313,7 +313,7 @@ - + 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 -- 2.39.5