Skip to content

Commit 68c6ff3

Browse files
committed
[Scripts] Bail out if scripts fail
Add `set -e` to the scripts so that they bail out if any command fails
1 parent a981279 commit 68c6ff3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

fetch_sources.sh

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Copyright 2004-present Facebook. All Rights Reserved.
44

5+
set -e
6+
57
cd "$(dirname "$0")"
68

79
echo "Downloading ICU"

install.sh

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Copyright 2004-present Facebook. All Rights Reserved.
44

5+
set -e
6+
57
cd "$(dirname "$0")"
68

79
AAR_PATH=buck-out/gen/android-jsc.aar

0 commit comments

Comments
 (0)