Skip to content

Commit 2e70b67

Browse files
Ignore brew boost uninstall error for iOS (#1471)
It may not be present as it appeared Relates-To: OLPEDGE-2861 Signed-off-by: Rustam Gamidov <ext-rustam.gamidov@here.com>
1 parent 53d1685 commit 2e70b67

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/ios/azure_ios_build_psv.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
# License-Filename: LICENSE
1919

2020
# Getting rid of boost installed to the CI image (not clear when it appeared)
21-
# asciidoc and source-highlight are using it so dependencies are ignored
22-
brew uninstall --ignore-dependencies boost
21+
# asciidoc and source-highlight are using it so dependencies are ignored.
22+
# Sometimes there is no boost and there is no need to fail in this case.
23+
brew uninstall --ignore-dependencies boost || true
2324

2425
# Due to some bug which is cmake cannot detect compiler while called
2526
# from cmake itself when project is compiled with XCode 12.4 we must

0 commit comments

Comments
 (0)