We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69f6f58 + ea38e15 commit d764388Copy full SHA for d764388
build/build.xml
@@ -320,7 +320,7 @@
320
<echo message="Comparing file size with previous build" />
321
<exec executable="bash">
322
<arg value="-c" />
323
- <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" />
324
</exec>
325
<delete dir="${size.dir}" />
326
</target>
build/build/minify-js.sh
@@ -1,3 +1,3 @@
1
#!/bin/bash
2
dir=$(dirname $0)
3
-`which node nodejs` $dir/uglify.js $1 > $2
+`which node nodejs 2> /dev/null` $dir/uglify.js $1 > $2
0 commit comments