tools: fix sh-bang in scripts

Signed-off-by: Janusz Jankowski <janusz.jankowski@linux.intel.com>
This commit is contained in:
Janusz Jankowski 2019-06-01 22:52:02 +02:00 committed by Liam Girdwood
parent 69b32abda1
commit e99bae6187
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
# Check two channel playabck function
rm -rf playback.result

View File

@ -1,3 +1,4 @@
#!/bin/bash
MAJOR=`grep '#define SOF_ABI_MAJOR ' $1/src/include/kernel/abi.h | grep -E ".[[:digit:]]$" -o`
MINOR=`grep '#define SOF_ABI_MINOR ' $1/src/include/kernel/abi.h | grep -E ".[[:digit:]]$" -o`
PATCH=`grep '#define SOF_ABI_PATCH ' $1/src/include/kernel/abi.h | grep -E ".[[:digit:]]$" -o`