opus draft: fix run failed under dash
[[ ]], the compound command is not supported by all shell interpreter. [ ], the buildin command is more common. Signed-off-by: Ralph Giles <giles@thaumas.net>
This commit is contained in:
parent
87cdaae249
commit
86e9bfc8bb
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ cat opus_source.tar.gz| base64 | tr -d '\n' | fold -w 64 | \
|
|||
#echo '</artwork>' >> opus_compare_escaped.c
|
||||
#echo '</figure>' >> opus_compare_escaped.c
|
||||
|
||||
if [[ ! -d ../opus_testvectors ]] ; then
|
||||
if [ ! -d ../opus_testvectors ] ; then
|
||||
echo "Downloading test vectors..."
|
||||
wget 'http://opus-codec.org/testvectors/opus_testvectors.tar.gz'
|
||||
tar -C .. -xvzf opus_testvectors.tar.gz
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue