File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,30 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
13
13
exit 1
14
14
fi
15
15
16
+ # Bitkeeper install failure is not critical, so exit code is not checked.
16
17
sudo ./dev/install-bitkeeper.sh
17
- sudo ./dev/install-python-packages
18
+
19
+ sudo ./dev/install-python-packages.sh
20
+ if [[ $? != 0 ]]; then
21
+ echo " cannot install Python packages"
22
+ exit 1
23
+ fi
18
24
elif [[ " $TRAVIS_OS_NAME " == " osx" ]]; then
19
25
brew update
26
+
20
27
brew install ctags cvs node
28
+ if [[ $? != 0 ]]; then
29
+ echo " cannot install extra packages"
30
+ exit 1
31
+ fi
32
+
21
33
brew upgrade python
34
+
22
35
./dev/install-python-packages.sh
36
+ if [[ $? != 0 ]]; then
37
+ echo " cannot install Python packages"
38
+ exit 1
39
+ fi
23
40
fi
24
41
25
42
sudo ./dev/install-universal_ctags.sh
You can’t perform that action at this time.
0 commit comments