aboutsummaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorbasti <info@dynpages.de>2011-11-01 11:53:06 +0100
committerbasti <info@dynpages.de>2011-11-01 11:53:06 +0100
commitea38e15e20bf97163bad043f4f3455f0e2217a4c (patch)
tree47efc63995a6ab0df9912357acc95d1912692d33 /build/build.xml
parente31adf039b4adb07b8878435beceaae1a6532d47 (diff)
downloadjquery-ui-ea38e15e20bf97163bad043f4f3455f0e2217a4c.tar.gz
jquery-ui-ea38e15e20bf97163bad043f4f3455f0e2217a4c.zip
build: removes disturbing error outputs on which call
By calling `which node nodejs` which reports an error even if there's an existing nodejs installation in $PATH. It silently ignores that non existing issue now. Before: http://imagebin.org/181889 After: http://imagebin.org/181890
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml2
1 files changed, 1 insertions, 1 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>