run_test.sh: Use bash in shebang line

Using sh is not guaranteed to work as [[ is a bash-ism.

Change-Id: I994dcc8b981460a04945a87f6fcdeaf629d6cafc
This commit is contained in:
Dave Borowitz 2017-01-30 17:23:27 -05:00
parent 37fe386fdf
commit b50ad0ecf1

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
wct_bin=$(which wct)
if [[ -z "$wct_bin" ]]; then