tests/debugfs_reader: fight bashism

debian's dash doesn't like this.

Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter 2011-10-31 17:40:37 +01:00
parent cc85c4efb7
commit efd3a5d0b5

View File

@ -22,6 +22,6 @@ if [ $i915_path = "x" ] ; then
fi
# read everything we can
cat $i915_path/* >& /dev/null
cat $i915_path/* > /dev/null 2>&1
exit 0