Fix a BASH assumption in test_version.sh
Brought to you by:
tytso
This is a piffling little fix which does not affect the intended operation of test_version.sh but removes an assumption that /bin/sh is linked to /bin/bash.
The script uses >& WORD redirection, which is a Bash shorthand for >& WORD 2>&1. This doesn't work if /bin/sh is linked to /bin/ash for example.
This patch just changes instances of >& WORD to the more portable version.
Patch to fix a BASH assumption in test_version.sh