mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Don't fail if un-installing python2-distribute threw an error
This commit is contained in:
parent
c93614d541
commit
58646e3fe0
1 changed files with 2 additions and 1 deletions
|
@ -2182,7 +2182,8 @@ install_arch_linux_git_deps() {
|
|||
install_arch_linux_stable_deps
|
||||
|
||||
pacman -Sy --noconfirm pacman || return 1
|
||||
pacman -R --noconfirm python2-distribute || return 1
|
||||
# Don't fail if un-installing python2-distribute threw an error
|
||||
pacman -R --noconfirm python2-distribute
|
||||
pacman -Sy --noconfirm git python2-crypto python2-setuptools \
|
||||
python2-jinja python2-m2crypto python2-markupsafe python2-msgpack \
|
||||
python2-psutil python2-yaml python2-pyzmq zeromq || return 1
|
||||
|
|
Loading…
Add table
Reference in a new issue