-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move metro functions to lib/metro.sh
- Loading branch information
1 parent
f9c4935
commit 1d91919
Showing
4 changed files
with
39 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel) | ||
|
||
# We run Metro in background while calling adb. | ||
cleanupMetro() { | ||
pkill -f run-metro.sh | ||
rm -f metro-server-logs.log | ||
} | ||
|
||
# Using function gives a neater jobspec name. | ||
runMetro() { | ||
nohup "${GIT_ROOT}/scripts/run-metro.sh" 2>&1 \ | ||
| tee metro-server-logs.log | ||
} | ||
|
||
waitForMetro() { | ||
set +e # Allow grep command to fail in the loop. | ||
TIMEOUT=5 | ||
echo "Waiting for Metro server..." >&2 | ||
while ! grep -q "Welcome to Metro" metro-server-logs.log; do | ||
echo -n "." >&2 | ||
sleep 1 | ||
if ((TIMEOUT == 0)); then | ||
echo -e "\nMetro server timed out, exiting" >&2 | ||
set -e # Restore errexit for rest of script. | ||
return 1 | ||
fi | ||
((TIMEOUT--)) | ||
done | ||
set -e # Restore errexit for rest of script. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters