mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Merge pull request #511 from basti1253/master
build: removes disturbing error outputs on which call(cherry picked from commit d764388a65
)
This commit is contained in:
parent
e9002c4c8f
commit
30446f9340
@ -313,7 +313,7 @@
|
|||||||
<echo message="Comparing file size with previous build" />
|
<echo message="Comparing file size with previous build" />
|
||||||
<exec executable="bash">
|
<exec executable="bash">
|
||||||
<arg value="-c" />
|
<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>
|
</exec>
|
||||||
<delete dir="${size.dir}" />
|
<delete dir="${size.dir}" />
|
||||||
</target>
|
</target>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
dir=$(dirname $0)
|
dir=$(dirname $0)
|
||||||
`which node nodejs` $dir/uglify.js $1 > $2
|
`which node nodejs 2> /dev/null` $dir/uglify.js $1 > $2
|
||||||
|
Loading…
Reference in New Issue
Block a user