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.
1 parent e9002c4 commit 30446f9Copy full SHA for 30446f9
build/build.xml
@@ -313,7 +313,7 @@
313
<echo message="Comparing file size with previous build" />
314
<exec executable="bash">
315
<arg value="-c" />
316
- <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" />
317
</exec>
318
<delete dir="${size.dir}" />
319
</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