Respect shebang inside shell scripts
This commit is contained in:
parent
6c3835f6b7
commit
687307ccfa
|
@ -22,7 +22,7 @@ PACKAGER_OUT="packager_out.txt"
|
||||||
function start_packager()
|
function start_packager()
|
||||||
{
|
{
|
||||||
rm -f $PACKAGER_OUT
|
rm -f $PACKAGER_OUT
|
||||||
sh ./node_modules/react-native/packager/packager.sh | tee $PACKAGER_OUT &
|
./node_modules/react-native/packager/packager.sh | tee $PACKAGER_OUT &
|
||||||
while :;
|
while :;
|
||||||
do
|
do
|
||||||
if grep -Fxq "React packager ready." $PACKAGER_OUT
|
if grep -Fxq "React packager ready." $PACKAGER_OUT
|
||||||
|
@ -87,7 +87,7 @@ elif [ "$TARGET" = "react-tests-android" ]; then
|
||||||
npm install
|
npm install
|
||||||
start_packager
|
start_packager
|
||||||
unlock_device
|
unlock_device
|
||||||
sh run-android.sh
|
./run-android.sh
|
||||||
|
|
||||||
LOGCAT_OUT="logcat_out.txt"
|
LOGCAT_OUT="logcat_out.txt"
|
||||||
rm -f $LOGCAT_OUT
|
rm -f $LOGCAT_OUT
|
||||||
|
|
Loading…
Reference in New Issue