scripts: Add #! headers to shell scripts

Use /bin/sh by default.  The lists used in xtensa-build-all.sh are a
bash feature, use bash for that script.

Signed-off-by: Dylan Reid <dgreid@chromium.org>
This commit is contained in:
Dylan Reid 2018-04-25 09:48:39 -07:00 committed by Liam Girdwood
parent 3ad69eb715
commit 2470f8c0b3
3 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/bin/sh
# fail on any errors
set -e

View File

@ -1,3 +1,5 @@
#!/bin/sh
./autogen.sh
./configure --enable-rimage
make

View File

@ -1,3 +1,5 @@
#!/bin/bash
# fail on any errors
set -e