Skip to content

Commit e76d7ab

Browse files
ci/macos/install_macos_deps: delete all symlinks before brew install
Signed-off-by: Bindea Cristian <cristian.bindea@analog.com>
1 parent c926a94 commit e76d7ab

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ci/macOS/install_macos_deps.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ source ${REPO_SRC}/ci/macOS/before_install_lib.sh
1515
install_packages() {
1616

1717
# Workaround: Homebrew fails to upgrade Python's 2to3 due to conflicting symlinks https://github.com/actions/runner-images/issues/6817
18-
rm /usr/local/bin/2to3 || true
19-
rm /usr/local/bin/idle3 || true
20-
rm /usr/local/bin/pydoc3 || true
21-
rm /usr/local/bin/python3 || true
22-
rm /usr/local/bin/python3-config || true
18+
rm -v /usr/local/bin/2to3* || true
19+
rm -v /usr/local/bin/idle3* || true
20+
rm -v /usr/local/bin/pydoc3* || true
21+
rm -v /usr/local/bin/python3* || true
22+
rm -v /usr/local/bin/python3-config || true
2323

2424
brew update
2525
# Workaround for brew taking a long time to upgrade existing packages

0 commit comments

Comments
 (0)