docker: Remove && chaining in install scripts

Something about them threw off the exit-immediately-on-non-zero-exit
behavior when building.
Related-Bug: #2070029
Change-Id: I3e40ebd78a9f8e93c905b24a12f5f54b2d27c2d9
This commit is contained in:
Tim Burke
2024年06月27日 14:24:32 -07:00
parent 37169aa6ac
commit f29067631e

View File

@@ -1,9 +1,9 @@
#!/bin/sh
set -e
pip install -U pip && \
cd /opt/swift && \
pip install -r requirements.txt && \
pip install -U pip
cd /opt/swift
pip install -r requirements.txt
pip install -e .
cp doc/saio/bin/* $HOME/bin
Reference in New Issue
openstack/swift
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.

The note is not visible to the blocked user.